Searched defs:activated (Results 1 - 8 of 8) sorted by relevance

/frameworks/support/v4/honeycomb/android/support/v4/view/
H A DViewCompatHC.java162 public static void setActivated(View view, boolean activated) { argument
163 view.setActivated(activated);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java46 * display based on the activated or selected state of the View. The card states
102 * Indicates that a card region is visible when the card is activated.
317 * @param activated True if the card is ACTIVE, or false if INACTIVE.
321 public void setActivated(boolean activated) { argument
322 if (activated != isActivated()) {
323 super.setActivated(activated);
H A DRowPresenter.java42 * animation is started. Selected status may control activated status of the row (see
50 * Row title is shown when row is expanded. Expanded status may control activated status
57 * The activated status of a row is applied to the row view and it's children via
59 * The activated status is typically used to control {@link BaseCardView} info region visibility.
60 * The row's activated status can be controlled by selected status and/or expanded status.
68 * or expanded status, application can control activated status by its own.
70 * activated status of row view.
100 * Don't synchronize row view activated status with selected status or expanded status,
106 * Synchronizes row view's activated status to expand status of the row view holder.
111 * Synchronizes row view's activated statu
226 setActivated(boolean activated) argument
[all...]
H A DGuidedActionsStylist.java347 void setActivated(boolean activated) { argument
348 mActivatorView.setActivated(activated);
350 ((GuidedActionItemContainer) itemView).setFocusOutAllowed(!activated);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
H A DPicker.java49 * three items only on currently activated column. If the Picker has focus, it will intercept DPAD
50 * directions and select activated column.
488 final boolean activated = isActivated();
493 view.setFocusable(activated);
498 * Returns number of visible items showing in a column when it's activated. The default value
500 * @return Number of visible items showing in a column when it's activated.
507 * Changes number of visible items showing in a column when it's activated. The default value
509 * @param visiblePickerItems Number of visible items showing in a column when it's activated.
524 * Returns number of visible items showing in a column when it's not activated. The default
526 * @return Number of visible items showing in a column when it's not activated
550 setActivated(boolean activated) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java451 void setActivated(View view, boolean activated); argument
920 public void setActivated(View view, boolean activated) { argument
1297 public void setActivated(View view, boolean activated) { argument
1298 ViewCompatHC.setActivated(view, activated);
2972 * Changes the activated state of this view. A view can be activated or not.
2978 * @param activated true if the view must be activated, false otherwise
2980 public static void setActivated(View view, boolean activated) { argument
2981 IMPL.setActivated(view, activated);
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java3862 public void dispatchSetActivated(boolean activated) { argument
3866 children[i].setActivated(activated);
H A DView.java18916 * Changes the activated state of this view. A view can be activated or not.
18922 * set are activated. (Um, yeah, we are deeply sorry about the terminology
18923 * here.) The activated state is propagated down to children of the view it
18926 * @param activated true if the view must be activated, false otherwise
18928 public void setActivated(boolean activated) { argument
18930 if (((mPrivateFlags & PFLAG_ACTIVATED) != 0) != activated) {
18931 mPrivateFlags = (mPrivateFlags & ~PFLAG_ACTIVATED) | (activated ? PFLAG_ACTIVATED : 0);
18934 dispatchSetActivated(activated);
18945 dispatchSetActivated(boolean activated) argument
[all...]

Completed in 2292 milliseconds