Home
last modified time | relevance | path

Searched refs:window (Results 1 – 15 of 15) sorted by relevance

/packages/inputmethods/LatinIME/src/com/android/inputmethod/latin/
DTutorial.java74 PopupWindow window; field in Tutorial.Bubble
92 window = new PopupWindow(context); in Bubble()
93 window.setBackgroundDrawable(null); in Bubble()
101 window.setContentView(textView); in Bubble()
102 window.setFocusable(false); in Bubble()
103 window.setTouchable(true); in Bubble()
104 window.setOutsideTouchable(false); in Bubble()
133 int textHeight = chooseSize(window, inputView, text, textView); in show()
138 if ((gravity & Gravity.BOTTOM) == Gravity.BOTTOM) offy -= window.getHeight(); in show()
139 if ((gravity & Gravity.RIGHT) == Gravity.RIGHT) offx -= window.getWidth(); in show()
[all …]
DLatinIME.java1123 Window window = mOptionsDialog.getWindow(); in showOptionsMenu() local
1124 WindowManager.LayoutParams lp = window.getAttributes(); in showOptionsMenu()
1127 window.setAttributes(lp); in showOptionsMenu()
1128 window.addFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM); in showOptionsMenu()
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
DTutorialEN.java90 PopupWindow window; field in TutorialEN.Bubble
120 window = new PopupWindow(context); in init()
121 window.setBackgroundDrawable(null); in init()
131 window.setContentView(textView); in init()
132 window.setFocusable(false); in init()
133 window.setTouchable(true); in init()
134 window.setOutsideTouchable(false); in init()
163 int textHeight = chooseSize(window, inputView, text, textView); in show()
168 if ((gravity & Gravity.BOTTOM) == Gravity.BOTTOM) offy -= window.getHeight(); in show()
169 if ((gravity & Gravity.RIGHT) == Gravity.RIGHT) offx -= window.getWidth(); in show()
[all …]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DTutorialJAJP.java92 PopupWindow window; field in TutorialJAJP.Bubble
122 window = new PopupWindow(context); in init()
123 window.setBackgroundDrawable(null); in init()
133 window.setContentView(textView); in init()
134 window.setFocusable(false); in init()
135 window.setTouchable(true); in init()
136 window.setOutsideTouchable(false); in init()
165 int textHeight = chooseSize(window, inputView, text, textView); in show()
170 if ((gravity & Gravity.BOTTOM) == Gravity.BOTTOM) offy -= window.getHeight(); in show()
171 if ((gravity & Gravity.RIGHT) == Gravity.RIGHT) offx -= window.getWidth(); in show()
[all …]
/packages/apps/Stk/src/com/android/stk/
DStkDialogActivity.java74 Window window = getWindow(); in onCreate() local
77 TextView mMessageView = (TextView) window in onCreate()
92 window.setFeatureDrawableResource(Window.FEATURE_LEFT_ICON, in onCreate()
95 window.setFeatureDrawable(Window.FEATURE_LEFT_ICON, in onCreate()
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
DLiveWallpaperPreview.java161 Window window = mDialog.getWindow(); in showLoading() local
162 WindowManager.LayoutParams lp = window.getAttributes(); in showLoading()
166 window.setType(WindowManager.LayoutParams.TYPE_APPLICATION_MEDIA); in showLoading()
/packages/apps/Email/src/com/android/email/activity/setup/
DAccountSetupOptions.java195 int window = (Integer)((SpinnerOption)mSyncWindowView.getSelectedItem()).value; in onDone() local
196 mAccount.setSyncLookback(window); in onDone()
/packages/apps/Email/src/com/android/email/
DAccount.java424 public void setSyncWindow(int window) { in setSyncWindow() argument
425 mSyncWindow = window; in setSyncWindow()
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
DUserDictionaryToolsList.java636 Window window = getWindow(); in updateWordList() local
637 WindowManager windowManager = window.getWindowManager(); in updateWordList()
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
DPinyinIME.java1228 Window window = mOptionsDialog.getWindow(); in showOptionsMenu() local
1229 WindowManager.LayoutParams lp = window.getAttributes(); in showOptionsMenu()
1232 window.setAttributes(lp); in showOptionsMenu()
1233 window.addFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM); in showOptionsMenu()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadProvider.java717 public void fillWindow(int pos, CursorWindow window) { in fillWindow() argument
718 mCursor.fillWindow(pos, window); in fillWindow()
/packages/apps/Launcher2/src/com/android/launcher2/
DLauncher.java1513 final PopupWindow window = (PopupWindow) v.getTag(); in dismissPreview() local
1514 if (window != null) { in dismissPreview()
1515 window.setOnDismissListener(new PopupWindow.OnDismissListener() { in dismissPreview()
1527 window.setOnDismissListener(null); in dismissPreview()
1530 window.dismiss(); in dismissPreview()
/packages/apps/Browser/src/com/android/browser/
DTabControl.java141 public void onCloseWindow(WebView window) { in onCloseWindow() argument
142 if (Browser.DEBUG && window != mTab.mSubView) { in onCloseWindow()
DBrowserActivity.java3228 public void onCloseWindow(WebView window) {
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarSyncAdapter.java1265 long window = Settings.Gservices.getLong(getContext().getContentResolver(), in getSyncWindowEnd() local
1267 if (window > 0) { in getSyncWindowEnd()
1273 long endOfWindow = System.currentTimeMillis() + window * DAY_IN_MS; in getSyncWindowEnd()