Searched refs:focused (Results 1 - 17 of 17) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/dialpad/
H A DDigitsEditText.java38 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
39 super.onFocusChanged(focused, direction, previouslyFocusedRect);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DCellLayoutChildren.java130 public void requestChildFocus(View child, View focused) { argument
131 super.requestChildFocus(child, focused);
H A DPagedViewCellLayoutChildren.java68 public void requestChildFocus(View child, View focused) { argument
69 super.requestChildFocus(child, focused);
H A DPagedView.java801 public boolean dispatchUnhandledMove(View focused, int direction) { argument
813 return super.dispatchUnhandledMove(focused, direction);
833 * If one of our descendant views decides that it could be focused now, only
840 public void focusableViewAvailable(View focused) { argument
842 View v = focused;
845 super.focusableViewAvailable(focused);
1353 public void requestChildFocus(View child, View focused) { argument
1354 super.requestChildFocus(child, focused);
H A DDragController.java455 public boolean dispatchUnhandledMove(View focused, int direction) { argument
456 return mMoveTarget != null && mMoveTarget.dispatchUnhandledMove(focused, direction);
H A DDragLayer.java317 public boolean dispatchUnhandledMove(View focused, int direction) { argument
318 return mDragController.dispatchUnhandledMove(focused, direction);
H A DWorkspace.java612 public boolean dispatchUnhandledMove(View focused, int direction) { argument
617 return super.dispatchUnhandledMove(focused, direction);
/packages/apps/Mms/tests/src/com/android/mms/ui/
H A DComposeMessageActivityTests.java183 * @param focused The view that should be focused (all others should not have focus)
186 private void checkFocused(View focused) { argument
187 assertEquals(focused == mRecipientsEditor, mRecipientsEditor.isFocused());
188 assertEquals(focused == mTextEditor, mTextEditor.isFocused());
/packages/apps/DeskClock/src/com/android/deskclock/
H A DDeskClock.java248 final View focused = getCurrentFocus();
249 if (focused != null) focused.clearFocus();
473 final View focused = getCurrentFocus();
474 if (focused != null) focused.clearFocus();
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DSearchActivityView.java610 public void onFocusChange(View v, boolean focused) { argument
611 if (DBG) Log.d(TAG, "Suggestions focus change, now: " + focused);
612 if (focused) {
619 public void onFocusChange(View v, boolean focused) { argument
620 if (DBG) Log.d(TAG, "Query focus change, now: " + focused);
621 if (focused) {
/packages/apps/Browser/src/com/android/browser/
H A DUrlInputView.java118 protected void onFocusChanged(boolean focused, int direction, Rect prevRect) { argument
119 super.onFocusChanged(focused, direction, prevRect);
121 if (focused) {
H A DTitleBar.java369 public View focusSearch(View focused, int dir) { argument
373 return super.focusSearch(focused, dir);
/packages/apps/Camera/src/com/android/camera/
H A DFocusManager.java204 public void onAutoFocus(boolean focused) { argument
209 if (focused) {
220 if (focused) {
H A DCamera.java809 boolean focused, android.hardware.Camera camera) {
815 mFocusManager.onAutoFocus(focused);
1706 // If we get a dpad center event without any focused view, move
808 onAutoFocus( boolean focused, android.hardware.Camera camera) argument
/packages/apps/Email/tests/src/com/android/email/activity/
H A DMessageComposeTests.java877 * @param focused The view that should be focused (all others should not have focus)
879 private void checkFocused(View focused) { argument
880 assertEquals(focused == mToView, mToView.isFocused());
881 assertEquals(focused == mSubjectView, mSubjectView.isFocused());
882 assertEquals(focused == mMessageView, mMessageView.isFocused());
/packages/apps/Browser/src/com/android/browser/view/
H A DScrollerView.java398 // Let the focused view and/or our descendants get the key first
1116 * to a component visible in this area. If no component can be focused in
1195 // previously focused item still has focus and is off screen, give
1651 public void requestChildFocus(View child, View focused) { argument
1653 scrollToChild(focused);
1656 mChildToScrollTo = focused;
1658 super.requestChildFocus(child, focused);
1757 // If the currently-focused view was visible on the screen when the
/packages/apps/Email/src/com/android/email/activity/
H A DMessageCompose.java1121 public void onFocusChange(View view, boolean focused) { argument
1122 if (focused) {

Completed in 716 milliseconds