Searched refs:getWindow (Results 1 - 25 of 114) sorted by path

12345

/frameworks/base/core/java/android/app/
H A DActivity.java814 public Window getWindow() { method in class:Activity
852 * @see #getWindow
1114 final Window win = getWindow();
1884 return getWindow().findViewById(id);
1902 Window window = getWindow();
1929 getWindow().setContentView(layoutResID);
1949 getWindow().setContentView(view);
1965 getWindow().setContentView(view, params);
1977 getWindow().addContentView(view, params);
2119 if (getWindow()
[all...]
H A DActivityThread.java2828 r.window = r.activity.getWindow();
H A DAlertDialog.java117 mAlert = new AlertController(getContext(), this, getWindow());
125 mAlert = new AlertController(context, this, getWindow());
H A DDialog.java73 * getWindow().setFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM,
220 getWindow().setVolumeControlStream(mOwnerActivity.getVolumeControlStream());
442 public Window getWindow() { method in class:Dialog
452 * @see #getWindow
790 LayoutParams params = getWindow().getAttributes();
1031 * {@link android.view.Window#requestFeature getWindow().requestFeature()}.
1041 return getWindow().requestFeature(featureId);
1049 getWindow().setFeatureDrawableResource(featureId, resId);
1057 getWindow().setFeatureDrawableUri(featureId, uri);
1065 getWindow()
[all...]
H A DDialogFragment.java401 mDialog.getWindow().addFlags(
H A DFragmentManager.java758 if (transitionStyle == 0 && mActivity.getWindow() != null) {
759 transitionStyle = mActivity.getWindow().getAttributes().windowAnimations;
H A DInstrumentation.java759 Window win = activity.getWindow();
822 Window win = activity.getWindow();
H A DLocalActivityManager.java140 r.window = r.activity.getWindow();
H A DNativeActivity.java136 getWindow().takeSurface(this);
137 getWindow().takeInputQueue(this);
138 getWindow().setFormat(PixelFormat.RGB_565);
139 getWindow().setSoftInputMode(
324 getWindow().setFlags(flags, mask);
328 getWindow().setFormat(format);
H A DPresentation.java182 getWindow().setGravity(Gravity.FILL);
H A DSearchDialog.java145 Window theWindow = getWindow();
515 getWindow().getDecorView().getWindowToken(), 0);
656 imm.hideSoftInputFromWindow(getWindow().getDecorView().getWindowToken(), 0)) {
/frameworks/base/core/java/android/database/
H A DAbstractCursor.java111 public CursorWindow getWindow() { method in class:AbstractCursor
H A DAbstractWindowedCursor.java145 public CursorWindow getWindow() { method in class:AbstractWindowedCursor
H A DBulkCursorNative.java64 CursorWindow window = getWindow(startPos);
155 public CursorWindow getWindow(int position) throws RemoteException method in class:BulkCursorProxy
H A DBulkCursorToCursorAdaptor.java83 setWindow(mBulkCursor.getWindow(newPosition));
H A DCrossProcessCursor.java25 * the cursor can provide a pre-filled window to use via {@link #getWindow} thereby
39 CursorWindow getWindow(); method in interface:CrossProcessCursor
H A DCrossProcessCursorWrapper.java28 * delegates {@link #fillWindow}, {@link #getWindow()} and {@link #onMove} to it.
57 public CursorWindow getWindow() { method in class:CrossProcessCursorWrapper
60 return crossProcessCursor.getWindow();
H A DCursorToBulkCursorAdaptor.java29 * If the wrapped cursor returns non-null from {@link CrossProcessCursor#getWindow}
53 * case where the cursor does not support getWindow.
149 d.window = mCursor.getWindow();
160 public CursorWindow getWindow(int position) { method in class:CursorToBulkCursorAdaptor
169 CursorWindow window = mCursor.getWindow();
H A DIBulkCursor.java36 public CursorWindow getWindow(int position) throws RemoteException; method in interface:IBulkCursor
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java315 View decor = getWindow().getWindow().getDecorView();
658 mWindow.getWindow().addFlags(WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED);
661 mWindow.getWindow().setLayout(MATCH_PARENT, WRAP_CONTENT);
696 mWindow.getWindow().setWindowAnimations(
728 mWindow.getWindow().setWindowAnimations(0);
812 public Dialog getWindow() { method in class:InputMethodService
918 onConfigureWindow(mWindow.getWindow(), isFullscreen, !mShowInputRequested);
941 final int currentHeight = mWindow.getWindow().getAttributes().height;
947 mWindow.getWindow()
[all...]
H A DSoftInputWindow.java39 WindowManager.LayoutParams lp = getWindow().getAttributes();
41 getWindow().setAttributes(lp);
71 getWindow().getDecorView().getHitRect(mBounds);
95 WindowManager.LayoutParams lp = getWindow().getAttributes();
114 WindowManager.LayoutParams lp = getWindow().getAttributes();
123 getWindow().setAttributes(lp);
135 WindowManager.LayoutParams lp = getWindow().getAttributes();
147 getWindow().setAttributes(lp);
152 WindowManager.LayoutParams lp = getWindow().getAttributes();
163 getWindow()
[all...]
/frameworks/base/core/java/android/nfc/
H A DNfcActivityManager.java122 if (activity.getWindow().isDestroyed()) {
/frameworks/base/core/java/android/preference/
H A DDialogPreference.java325 Window window = dialog.getWindow();
H A DPreferenceScreen.java176 dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
H A DVolumePreference.java134 View view = dialog.getWindow().getDecorView()

Completed in 230 milliseconds

12345