HomeSort by relevance Sort by last modified time
    Searched defs:currentFocus (Results 1 - 25 of 29) sorted by null

1 2

  /packages/apps/Car/Settings/src/com/android/car/settings/security/
ConfirmLockPinPasswordFragment.java 222 View currentFocus = getActivity().getCurrentFocus();
223 if (currentFocus == null) {
224 currentFocus = getActivity().getWindow().getDecorView();
227 if (currentFocus != null) {
229 (InputMethodManager) currentFocus.getContext()
232 .hideSoftInputFromWindow(currentFocus.getWindowToken(), 0);
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilitySoftKeyboardModesTest.java 111 View currentFocus = activity.getCurrentFocus();
112 if (currentFocus != null) {
114 .hideSoftInputFromWindow(currentFocus.getWindowToken(), 0);
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactEditorActivity.java 394 final View currentFocus = getCurrentFocus();
395 if (imm != null && currentFocus != null) {
396 imm.hideSoftInputFromWindow(currentFocus.getWindowToken(), 0);
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
FocusSearchNavigationTest.java 316 View currentFocus = ((Activity) context).getWindow().getCurrentFocus();
317 description.appendText(". Current focus is in " + objectToLog(currentFocus));
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/
NotificationStudioActivity.java 230 View currentFocus = getCurrentFocus();
232 currentFocus.getLocationOnScreen(screenCoords);
233 float x = event.getRawX() + currentFocus.getLeft() - screenCoords[0];
234 float y = event.getRawY() + currentFocus.getTop() - screenCoords[1];
237 && (x < currentFocus.getLeft() ||
238 x >= currentFocus.getRight() ||
239 y < currentFocus.getTop() ||
240 y > currentFocus.getBottom())) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowActivity.java 51 private View currentFocus;
335 currentFocus = view;
340 if (currentFocus != null) {
341 return currentFocus;
350 currentFocus = null;
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowActivity.java 64 private View currentFocus;
440 currentFocus = view;
445 return currentFocus;
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
LeanbackLauncherStrategy.java 605 UiObject2 currentFocus = notification.findObject(
608 while (!currentFocus.equals(previousFocus)) {
609 if (currentFocus.hasObject(selector)) {
610 return currentFocus; // Found
613 previousFocus = currentFocus;
614 currentFocus = notification.findObject(
  /frameworks/base/core/java/android/widget/
ListView.java     [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 
shadows-core-v17-3.1.1.jar 
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
shadows-core-v21-3.1.1.jar 
shadows-core-v22-3.1.1.jar 
shadows-core-v23-3.1.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
framework-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
shadows-framework-3.5.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
shadows-framework-3.6.1.jar 

Completed in 357 milliseconds

1 2