Snap for 8033408 from 8bf5b07332
to sc-d2-release
Change-Id: I4e6ced06963015749463dbe04f1e11f403daffb3
This commit is contained in:
commit
ed0badef25
|
@ -36,6 +36,7 @@
|
||||||
<uses-permission android:name="android.permission.READ_FRAME_BUFFER"/>
|
<uses-permission android:name="android.permission.READ_FRAME_BUFFER"/>
|
||||||
<uses-permission android:name="android.permission.MANAGE_ACCESSIBILITY"/>
|
<uses-permission android:name="android.permission.MANAGE_ACCESSIBILITY"/>
|
||||||
<uses-permission android:name="android.permission.MONITOR_INPUT"/>
|
<uses-permission android:name="android.permission.MONITOR_INPUT"/>
|
||||||
|
<uses-permission android:name="android.permission.ALLOW_SLIPPERY_TOUCHES"/>
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.SYSTEM_APPLICATION_OVERLAY" />
|
<uses-permission android:name="android.permission.SYSTEM_APPLICATION_OVERLAY" />
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@ import static android.view.MotionEvent.ACTION_CANCEL;
|
||||||
import static android.view.MotionEvent.ACTION_DOWN;
|
import static android.view.MotionEvent.ACTION_DOWN;
|
||||||
import static android.view.MotionEvent.ACTION_MOVE;
|
import static android.view.MotionEvent.ACTION_MOVE;
|
||||||
import static android.view.MotionEvent.ACTION_UP;
|
import static android.view.MotionEvent.ACTION_UP;
|
||||||
|
import static android.view.WindowManager.LayoutParams.FLAG_SLIPPERY;
|
||||||
|
|
||||||
import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCHER_SWIPE_DOWN_WORKSPACE_NOTISHADE_OPEN;
|
import static com.android.launcher3.logging.StatsLogManager.LauncherEvent.LAUNCHER_SWIPE_DOWN_WORKSPACE_NOTISHADE_OPEN;
|
||||||
|
|
||||||
|
@ -47,17 +48,6 @@ public class StatusBarTouchController implements TouchController {
|
||||||
|
|
||||||
private static final String TAG = "StatusBarController";
|
private static final String TAG = "StatusBarController";
|
||||||
|
|
||||||
/**
|
|
||||||
* Window flag: Enable touches to slide out of a window into neighboring
|
|
||||||
* windows in mid-gesture instead of being captured for the duration of
|
|
||||||
* the gesture.
|
|
||||||
*
|
|
||||||
* This flag changes the behavior of touch focus for this window only.
|
|
||||||
* Touches can slide out of the window but they cannot necessarily slide
|
|
||||||
* back in (unless the other window with touch focus permits it).
|
|
||||||
*/
|
|
||||||
private static final int FLAG_SLIPPERY = 0x20000000;
|
|
||||||
|
|
||||||
private final Launcher mLauncher;
|
private final Launcher mLauncher;
|
||||||
private final SystemUiProxy mSystemUiProxy;
|
private final SystemUiProxy mSystemUiProxy;
|
||||||
private final float mTouchSlop;
|
private final float mTouchSlop;
|
||||||
|
@ -140,6 +130,15 @@ public class StatusBarTouchController implements TouchController {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* FLAG_SLIPPERY enables touches to slide out of a window into neighboring
|
||||||
|
* windows in mid-gesture instead of being captured for the duration of
|
||||||
|
* the gesture.
|
||||||
|
*
|
||||||
|
* This flag changes the behavior of touch focus for this window only.
|
||||||
|
* Touches can slide out of the window but they cannot necessarily slide
|
||||||
|
* back in (unless the other window with touch focus permits it).
|
||||||
|
*/
|
||||||
private void setWindowSlippery(boolean enable) {
|
private void setWindowSlippery(boolean enable) {
|
||||||
Window w = mLauncher.getWindow();
|
Window w = mLauncher.getWindow();
|
||||||
WindowManager.LayoutParams wlp = w.getAttributes();
|
WindowManager.LayoutParams wlp = w.getAttributes();
|
||||||
|
|
Loading…
Reference in New Issue