Searched refs:window (Results 1 - 16 of 16) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DTutorial.java69 PopupWindow window; field in class:Tutorial.Bubble
87 window = new PopupWindow(context);
88 window.setBackgroundDrawable(null);
96 window.setContentView(textView);
97 window.setFocusable(false);
98 window.setTouchable(true);
99 window.setOutsideTouchable(false);
128 int textHeight = chooseSize(window, inputView, text, textView);
133 if ((gravity & Gravity.BOTTOM) == Gravity.BOTTOM) offy -= window.getHeight();
134 if ((gravity & Gravity.RIGHT) == Gravity.RIGHT) offx -= window
[all...]
H A DLatinIME.java1686 Window window = mVoiceWarningDialog.getWindow();
1687 WindowManager.LayoutParams lp = window.getAttributes();
1690 window.setAttributes(lp);
1691 window.addFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
2566 Window window = mOptionsDialog.getWindow();
2567 WindowManager.LayoutParams lp = window.getAttributes();
2570 window.setAttributes(lp);
2571 window.addFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
H A DTutorialEN.java90 PopupWindow window; field in class:TutorialEN.Bubble
120 window = new PopupWindow(context);
121 window.setBackgroundDrawable(null);
131 window.setContentView(textView);
132 window.setFocusable(false);
133 window.setTouchable(true);
134 window.setOutsideTouchable(false);
163 int textHeight = chooseSize(window, inputView, text, textView);
168 if ((gravity & Gravity.BOTTOM) == Gravity.BOTTOM) offy -= window.getHeight();
169 if ((gravity & Gravity.RIGHT) == Gravity.RIGHT) offx -= window
[all...]
/packages/apps/Mms/src/com/android/mms/
H A DSuggestionsProvider.java170 public void fillWindow(int position, CursorWindow window) { argument
175 window.acquireReference();
179 window.clear();
180 window.setStartPosition(position);
182 window.setNumColumns(columnNum);
183 while (moveToPosition(pos) && window.allocRow()) {
187 if (!window.putString(field, pos, i)) {
188 window.freeLastRow();
192 if (!window.putNull(pos, i)) {
193 window
[all...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DTutorialJAJP.java92 PopupWindow window; field in class:TutorialJAJP.Bubble
122 window = new PopupWindow(context);
123 window.setBackgroundDrawable(null);
133 window.setContentView(textView);
134 window.setFocusable(false);
135 window.setTouchable(true);
136 window.setOutsideTouchable(false);
165 int textHeight = chooseSize(window, inputView, text, textView);
170 if ((gravity & Gravity.BOTTOM) == Gravity.BOTTOM) offy -= window.getHeight();
171 if ((gravity & Gravity.RIGHT) == Gravity.RIGHT) offx -= window
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DBrowserHomepagePreference.java109 Window window = getDialog().getWindow();
110 View decorView = window.getDecorView();
114 window.getWindowManager().updateViewLayout(decorView, params);
H A DTab.java847 // Helper method to create a new tab or sub window.
869 // only allow new window or sub window for the foreground case
898 // Allow the popup and create the appropriate window.
940 public void onCloseWindow(WebView window) {
942 // JavaScript can only close popup window.
1233 // WebViewClient implementation for the sub window
1296 // WebChromeClient implementation for the sub window
1316 public void onCloseWindow(WebView window) { argument
1317 if (window !
[all...]
/packages/apps/Stk/src/com/android/stk/
H A DStkDialogActivity.java74 Window window = getWindow();
77 TextView mMessageView = (TextView) window
92 window.setFeatureDrawableResource(Window.FEATURE_LEFT_ICON,
95 window.setFeatureDrawable(Window.FEATURE_LEFT_ICON,
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DCorpusSelectionDialog.java86 Window window = getWindow();
87 WindowManager.LayoutParams lp = window.getAttributes();
90 // Put window on top of input method
92 window.setAttributes(lp);
/packages/apps/Browser/tests/src/com/android/browser/
H A DTestWebChromeClient.java98 public void onCloseWindow(WebView window) { argument
99 mWrappedClient.onCloseWindow(window);
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
H A DLiveWallpaperPreview.java161 Window window = mDialog.getWindow();
162 WindowManager.LayoutParams lp = window.getAttributes();
166 window.setType(WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA);
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSetupOptions.java63 /** Default sync window for new EAS accounts */
208 int window = (Integer)((SpinnerOption)mSyncWindowView.getSelectedItem()).value;
209 mAccount.setSyncLookback(window);
/packages/apps/Email/src/com/android/email/
H A DAccount.java464 public void setSyncWindow(int window) { argument
465 mSyncWindow = window;
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DUserDictionaryToolsList.java504 /** change to the edit window */
636 Window window = getWindow();
637 WindowManager windowManager = window.getWindowManager();
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncher.java732 ((View) mAllAppsGrid).setWillNotDraw(false); // We don't want a hole punched in our window.
1639 final PopupWindow window = (PopupWindow) v.getTag();
1640 if (window != null) {
1641 window.setOnDismissListener(new PopupWindow.OnDismissListener() {
1653 window.setOnDismissListener(null);
1656 window.dismiss();
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadProvider.java1146 public void fillWindow(int pos, CursorWindow window) { argument
1147 mCursor.fillWindow(pos, window);

Completed in 293 milliseconds