Searched defs:isInMultiWindowMode (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/android/app/
H A DFragmentController.java252 public void dispatchMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
253 mHost.mFragmentManager.dispatchMultiWindowModeChanged(isInMultiWindowMode);
H A DApplicationThreadNative.java1506 IBinder token, boolean isInMultiWindowMode) throws RemoteException {
1510 data.writeInt(isInMultiWindowMode ? 1 : 0);
1505 scheduleMultiWindowModeChanged( IBinder token, boolean isInMultiWindowMode) argument
H A DFragmentManager.java2073 public void dispatchMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
2080 f.performMultiWindowModeChanged(isInMultiWindowMode);
H A DIApplicationThread.java162 void scheduleMultiWindowModeChanged(IBinder token, boolean isInMultiWindowMode) throws RemoteException; argument
H A DFragment.java1665 * @param isInMultiWindowMode True if the activity is in multi-window mode.
1667 public void onMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
2410 void performMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
2411 onMultiWindowModeChanged(isInMultiWindowMode);
2413 mChildFragmentManager.dispatchMultiWindowModeChanged(isInMultiWindowMode);
H A DActivity.java1877 * @param isInMultiWindowMode True if the activity is in multi-window mode.
1879 public void onMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
1890 public boolean isInMultiWindowMode() { method in class:Activity
1892 return ActivityManagerNative.getDefault().isInMultiWindowMode(mToken);
6891 final void dispatchMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
6893 "dispatchMultiWindowModeChanged " + this + ": " + isInMultiWindowMode);
6894 mFragments.dispatchMultiWindowModeChanged(isInMultiWindowMode);
6898 onMultiWindowModeChanged(isInMultiWindowMode);
H A DActivityManagerNative.java2905 final boolean inMultiWindow = isInMultiWindowMode(token);
6931 public boolean isInMultiWindowMode(IBinder token) throws RemoteException { method in class:ActivityManagerProxy
H A DActivityThread.java1326 public void scheduleMultiWindowModeChanged(IBinder token, boolean isInMultiWindowMode) argument
1328 sendMessage(H.MULTI_WINDOW_MODE_CHANGED, token, isInMultiWindowMode ? 1 : 0);
2961 private void handleMultiWindowModeChanged(IBinder token, boolean isInMultiWindowMode) { argument
2964 r.activity.dispatchMultiWindowModeChanged(isInMultiWindowMode);
H A DIActivityManager.java630 public boolean isInMultiWindowMode(IBinder token) throws RemoteException; method in interface:IActivityManager
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsActivity.java489 public void onMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
490 super.onMultiWindowModeChanged(isInMultiWindowMode);
512 EventBus.getDefault().send(new MultiWindowStateChangedEvent(isInMultiWindowMode,
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentController.java281 public void dispatchMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
282 mHost.mFragmentManager.dispatchMultiWindowModeChanged(isInMultiWindowMode);
H A DFragmentActivity.java281 * @param isInMultiWindowMode True if the activity is in multi-window mode.
284 public void onMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
285 mFragments.dispatchMultiWindowModeChanged(isInMultiWindowMode);
H A DFragmentManager.java2197 public void dispatchMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
2204 f.performMultiWindowModeChanged(isInMultiWindowMode);
H A DFragment.java1438 * @param isInMultiWindowMode True if the activity is in multi-window mode.
1440 public void onMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
2144 void performMultiWindowModeChanged(boolean isInMultiWindowMode) { argument
2145 onMultiWindowModeChanged(isInMultiWindowMode);
2147 mChildFragmentManager.dispatchMultiWindowModeChanged(isInMultiWindowMode);
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java424 public boolean isInMultiWindowMode(); method in interface:WindowManagerPolicy.WindowState
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java714 final boolean fullscreenTask = !isInMultiWindowMode();
2493 public boolean isInMultiWindowMode() { method in class:WindowState
2837 final boolean nonFullscreenTask = isInMultiWindowMode();
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java7570 public boolean isInMultiWindowMode(IBinder token) { method in class:ActivityManagerService

Completed in 373 milliseconds