Searched defs:focused (Results 1 - 25 of 28) sorted by relevance

12

/packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
H A DDigitsEditText.java45 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) { argument
46 super.onFocusChanged(focused, direction, previouslyFocusedRect);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DPagedViewCellLayoutChildren.java68 public void requestChildFocus(View child, View focused) { argument
69 super.requestChildFocus(child, focused);
H A DCling.java147 public View focusSearch(View focused, int direction) { argument
148 return FocusFinder.getInstance().findNextFocus(this, focused, direction);
H A DShortcutAndWidgetContainer.java166 public void requestChildFocus(View child, View focused) { argument
167 super.requestChildFocus(child, focused);
H A DDragController.java470 public boolean dispatchUnhandledMove(View focused, int direction) { argument
471 return mMoveTarget != null && mMoveTarget.dispatchUnhandledMove(focused, direction);
H A DDragLayer.java359 public boolean dispatchUnhandledMove(View focused, int direction) { argument
360 return mDragController.dispatchUnhandledMove(focused, direction);
H A DPagedView.java886 public boolean dispatchUnhandledMove(View focused, int direction) { argument
899 return super.dispatchUnhandledMove(focused, direction);
920 * If one of our descendant views decides that it could be focused now, only
927 public void focusableViewAvailable(View focused) { argument
929 View v = focused;
932 super.focusableViewAvailable(focused);
1440 public void requestChildFocus(View child, View focused) { argument
1441 super.requestChildFocus(child, focused);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DPagedViewCellLayoutChildren.java68 public void requestChildFocus(View child, View focused) { argument
69 super.requestChildFocus(child, focused);
H A DShortcutAndWidgetContainer.java210 public void requestChildFocus(View child, View focused) { argument
211 super.requestChildFocus(child, focused);
H A DDragController.java471 public boolean dispatchUnhandledMove(View focused, int direction) { argument
472 return mMoveTarget != null && mMoveTarget.dispatchUnhandledMove(focused, direction);
H A DDragLayer.java411 public boolean dispatchUnhandledMove(View focused, int direction) { argument
412 return mDragController.dispatchUnhandledMove(focused, direction);
H A DPagedView.java1270 public boolean dispatchUnhandledMove(View focused, int direction) { argument
1283 return super.dispatchUnhandledMove(focused, direction);
1304 * If one of our descendant views decides that it could be focused now, only
1311 public void focusableViewAvailable(View focused) { argument
1313 View v = focused;
1316 super.focusableViewAvailable(focused);
2119 public void requestChildFocus(View child, View focused) { argument
2120 super.requestChildFocus(child, focused);
/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/Browser/src/com/android/browser/
H A DTitleBar.java395 public View focusSearch(View focused, int dir) { argument
401 return super.focusSearch(focused, dir);
H A DUrlInputView.java108 protected void onFocusChanged(boolean focused, int direction, Rect prevRect) { argument
109 super.onFocusChanged(focused, direction, prevRect);
111 if (focused) {
/packages/apps/Camera/src/com/android/camera/
H A DFocusOverlayManager.java256 public void onAutoFocus(boolean focused, boolean shutterButtonPressed) { argument
261 if (focused) {
272 if (focused) {
H A DPhotoModule.java1027 boolean focused, android.hardware.Camera camera) {
1033 mFocusManager.onAutoFocus(focused, mShutterButton.isPressed());
1849 // If we get a dpad center event without any focused view, move
1026 onAutoFocus( boolean focused, android.hardware.Camera camera) argument
/packages/apps/LegacyCamera/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/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
H A DPicker.java371 boolean focused = column.hasFocus();
382 setOrAnimateAlpha(item, (selected == i), focused, animateAlpha, localAnimList);
393 private void setOrAnimateAlpha(View view, boolean selected, boolean focused, boolean animate, argument
397 if ((focused && !mKeyDown) || mClicked) {
406 if (focused && !mClicked && !mKeyDown) {
/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/Camera2/src/com/android/camera/
H A DFocusOverlayManager.java292 public void onAutoFocus(boolean focused, boolean shutterButtonPressed) { argument
297 if (focused) {
308 if (focused) {
H A DPhotoModule.java1193 public void onAutoFocus(boolean focused, CameraProxy camera) { argument
1194 SessionStatsCollector.instance().autofocusResult(focused);
1200 Log.v(TAG, "mAutoFocusTime = " + mAutoFocusTime + "ms focused = "+focused);
1202 mFocusManager.onAutoFocus(focused, false);
1829 // If we get a dpad center event without any focused view, move
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DSearchActivityView.java519 public void onFocusChange(View v, boolean focused) { argument
520 if (DBG) Log.d(TAG, "Suggestions focus change, now: " + focused);
521 if (focused) {
529 public void onFocusChange(View v, boolean focused) { argument
530 if (DBG) Log.d(TAG, "Query focus change, now: " + focused);
531 if (focused) {
/packages/apps/Dialer/src/com/android/dialer/widget/
H A DOverlappingPaneLayout.java629 public void requestChildFocus(View child, View focused) { argument
630 super.requestChildFocus(child, focused);

Completed in 349 milliseconds

12