HomeSort by relevance Sort by last modified time
    Searched refs:focused (Results 26 - 50 of 250) sorted by null

12 3 4 5 6 7 8 910

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PersistentFocusWrapper.java 32 * Saves the focused grandchild position.
104 public void requestChildFocus(View child, View focused) {
105 super.requestChildFocus(child, focused);
106 View view = focused;
111 if (DEBUG) Log.v(TAG, "requestChildFocus focused " + focused + " mSelectedPosition " + mSelectedPosition);
  /packages/apps/TV/src/com/android/tv/guide/
TimelineGridView.java 40 View focused) {
ProgramRow.java 150 public View focusSearch(View focused, int direction) {
151 TableEntry focusedEntry = ((ProgramItemView) focused).getTableEntry();
160 return focused;
166 return focused;
170 View target = super.focusSearch(focused, direction);
174 // The focused entry is the last entry; Align to the right edge.
176 return focused;
225 // Focused view can be detached only if it's updated.
  /frameworks/support/core-ui/java/android/support/v4/widget/
FocusStrategy.java 38 @Nullable T focused, @FocusRelativeDirection int direction, boolean isLayoutRtl,
51 return getNextFocusable(focused, sortedFocusables, wrap);
53 return getPreviousFocusable(focused, sortedFocusables, wrap);
60 private static <T> T getNextFocusable(T focused, ArrayList<T> focusables, boolean wrap) {
64 // no item is currently focused.
65 final int position = (focused == null ? -1 : focusables.lastIndexOf(focused)) + 1;
75 private static <T> T getPreviousFocusable(T focused, ArrayList<T> focusables, boolean wrap) {
79 // if no item is currently focused.
80 final int position = (focused == null ? count : focusables.indexOf(focused)) - 1
    [all...]
  /frameworks/support/compat/jellybean/android/support/v4/view/accessibility/
AccessibilityNodeInfoCompatJellyBean.java 76 public static void setAccesibilityFocused(Object info, boolean focused) {
77 ((AccessibilityNodeInfo) info).setAccessibilityFocused(focused);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAppWidgetHostView.java 252 public void requestChildFocus(View child, View focused) {
253 super.requestChildFocus(child, focused);
254 dispatchChildFocus(mChildrenFocused && focused != null);
255 if (focused != null) {
256 focused.setFocusableInTouchMode(false);
267 public boolean dispatchUnhandledMove(View focused, int direction) {
  /packages/apps/TV/src/com/android/tv/menu/
MenuView.java 201 public View focusSearch(View focused, int direction) {
206 View newView = super.focusSearch(focused, direction);
207 MenuRowView oldfocusedParent = getParentMenuRowView(focused);
221 View newView = super.focusSearch(focused, direction);
222 MenuRowView oldfocusedParent = getParentMenuRowView(focused);
237 return super.focusSearch(focused, direction);
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/profile/
filter.go 93 // focused/ignored locations. The map only contains locations that are
94 // explicitly focused or ignored. Returns whether there is at least
95 // one focused location but no ignored locations.
101 // Found focused location. Must keep searching in case there
122 focused, ignored := focusedSample(s, focus, ignore)
123 fm = fm || focused
125 if focused && !ignored {
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/profile/
filter.go 93 // focused/ignored locations. The map only contains locations that are
94 // explicitly focused or ignored. Returns whether there is at least
95 // one focused location but no ignored locations.
101 // Found focused location. Must keep searching in case there
122 focused, ignored := focusedSample(s, focus, ignore)
123 fm = fm || focused
125 if focused && !ignored {
  /frameworks/base/core/java/com/android/internal/widget/
NumericTextView.java 67 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
68 super.onFocusChanged(focused, direction, previouslyFocusedRect);
70 if (focused) {
  /cts/tests/tests/view/src/android/view/cts/
MockTextView.java 134 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
135 super.onFocusChanged(focused, direction, previouslyFocusedRect);
  /cts/tests/tests/widget/src/android/widget/cts/
MockTextView.java 134 protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
135 super.onFocusChanged(focused, direction, previouslyFocusedRect);
  /external/chromium-trace/catapult/third_party/polymer/components/paper-action-dialog/
paper-input-decorator.css 113 .focused-underline {
119 .focused-underline[invisible] {
  /external/chromium-trace/catapult/third_party/polymer/components/paper-input/
paper-input-decorator.css 113 .focused-underline {
119 .focused-underline[invisible] {
  /frameworks/base/core/java/android/text/method/
AllCapsTransformationMethod.java 63 public void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction,
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/bots/
BaseBot.java 51 candidate.findObject(By.focused(true)));
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
Picker.java 283 final boolean focused = column.hasFocus();
298 setOrAnimateAlpha(item, (selected == column.getChildAdapterPosition(item)), focused,
310 private void setOrAnimateAlpha(View view, boolean selected, boolean focused, boolean animate,
314 if ((focused && !mKeyDown) || mClicked) {
323 if (focused && !mClicked && !mKeyDown) {
477 public void requestChildFocus(View child, View focused) {
478 super.requestChildFocus(child, focused);
  /frameworks/base/core/java/android/app/
ActionBar.java 1118 final View focused = viewGroup.findFocus(); local
1473 final View focused = mFocusRoot.findFocus(); local
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SearchActivityView.java 519 public void onFocusChange(View v, boolean focused) {
520 if (DBG) Log.d(TAG, "Suggestions focus change, now: " + focused);
521 if (focused) {
529 public void onFocusChange(View v, boolean focused) {
530 if (DBG) Log.d(TAG, "Query focus change, now: " + focused);
531 if (focused) {
  /frameworks/base/graphics/java/android/graphics/drawable/
RippleDrawable.java 254 boolean focused = false;
261 focused = true;
270 setBackgroundActive(hovered || focused || (enabled && pressed), focused || hovered);
286 private void setBackgroundActive(boolean active, boolean focused) {
290 tryBackgroundEnter(focused);
545 private void tryBackgroundEnter(boolean focused) {
552 mBackground.enter(focused);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/tv/animations/
ViewFocusAnimator.java 110 private void animateFocus(boolean focused) {
115 float target = focused ? 1.0f : 0.0f;
132 * Changes the size of the {@link TaskCardView} to show its focused state.
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayoutChildren.java 68 public void requestChildFocus(View child, View focused) {
69 super.requestChildFocus(child, focused);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Dialog.java 98 public void keyboardFocusChanged (FocusEvent event, Actor actor, boolean focused) {
99 if (!focused) focusChanged(event);
102 public void scrollFocusChanged (FocusEvent event, Actor actor, boolean focused) {
103 if (!focused) focusChanged(event);
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityWindowInfo.java 323 * @param focused Whether has input focus.
327 public void setFocused(boolean focused) {
328 setBooleanProperty(BOOLEAN_PROPERTY_FOCUSED, focused);
343 * @param focused Whether has accessibility focus.
347 public void setAccessibilityFocused(boolean focused) {
348 setBooleanProperty(BOOLEAN_PROPERTY_ACCESSIBILITY_FOCUSED, focused);
535 builder.append(", focused=").append(isFocused());
  /development/samples/ApiDemos/src/com/example/android/apis/view/
InternalSelectionView.java 42 * the previously focused rectangle.
232 protected void onFocusChanged(boolean focused, int direction,
234 super.onFocusChanged(focused, direction, previouslyFocusedRect);
236 if (focused) {

Completed in 2643 milliseconds

12 3 4 5 6 7 8 910