Home | History | Annotate | Download | only in app

Lines Matching defs:mWindow

101     final Window mWindow;
186 mWindow = w;
291 if (mWindow.hasFeature(Window.FEATURE_ACTION_BAR)) {
292 mWindow.invalidatePanelMenu(Window.FEATURE_ACTION_BAR);
307 mWindow.getDecorView().dispatchConfigurationChanged(config);
311 mDecor = mWindow.getDecorView();
313 if (mActionBar == null && mWindow.hasFeature(Window.FEATURE_ACTION_BAR)) {
315 mWindow.setDefaultIcon(info.icon);
316 mWindow.setDefaultLogo(info.logo);
320 WindowManager.LayoutParams l = mWindow.getAttributes();
365 if (mWindow.isDestroyed()) {
377 mWindow.closeAllPanels();
448 bundle.putBundle(DIALOG_HIERARCHY_TAG, mWindow.saveHierarchyState());
470 mWindow.restoreHierarchyState(dialogHierarchyState);
485 return mWindow;
498 return mWindow != null ? mWindow.getCurrentFocus() : null;
518 return mWindow.findViewById(id);
528 mWindow.setContentView(layoutResID);
539 mWindow.setContentView(view);
551 mWindow.setContentView(view, params);
562 mWindow.addContentView(view, params);
571 mWindow.setTitle(title);
572 mWindow.getAttributes().setTitle(title);
681 if (mCancelable && mShowing && mWindow.shouldCloseOnTouch(mContext, event)) {
779 if (mWindow.superDispatchKeyEvent(event)) {
797 if (mWindow.superDispatchKeyShortcutEvent(event)) {
815 if (mWindow.superDispatchTouchEvent(ev)) {
833 if (mWindow.superDispatchTrackballEvent(ev)) {
851 if (mWindow.superDispatchGenericMotionEvent(ev)) {
971 if (mWindow.hasFeature(Window.FEATURE_OPTIONS_PANEL)) {
972 mWindow.openPanel(Window.FEATURE_OPTIONS_PANEL, null);
980 if (mWindow.hasFeature(Window.FEATURE_OPTIONS_PANEL)) {
981 mWindow.closePanel(Window.FEATURE_OPTIONS_PANEL);
989 if (mWindow.hasFeature(Window.FEATURE_OPTIONS_PANEL)) {
990 mWindow.invalidatePanelMenu(Window.FEATURE_OPTIONS_PANEL);
1146 mWindow.takeKeyEvents(get);
1223 mWindow.setCloseOnTouchOutside(cancel);
1374 mWindow.setCloseOnSwipeEnabled(mCancelable);