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

/frameworks/support/v4/honeycomb/android/support/v4/view/
H A DViewCompatHC.java156 public static void setActivated(View view, boolean activated) { argument
157 view.setActivated(activated);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java45 * display based on the activated or selected state of the View. The card states
101 * Indicates that a card region is visible when the card is activated.
307 * @param activated True if the card is ACTIVE, or false if INACTIVE.
311 public void setActivated(boolean activated) { argument
312 if (activated != isActivated()) {
313 super.setActivated(activated);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewCompat.java339 void setActivated(View view, boolean activated); argument
747 public void setActivated(View view, boolean activated) { argument
926 public void setActivated(View view, boolean activated) { argument
927 ViewCompatHC.setActivated(view, activated);
2332 * Changes the activated state of this view. A view can be activated or not.
2338 * @param activated true if the view must be activated, false otherwise
2340 public static void setActivated(View view, boolean activated) { argument
2341 IMPL.setActivated(view, activated);
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java3493 public void dispatchSetActivated(boolean activated) { argument
3497 children[i].setActivated(activated);
H A DView.java16758 * Changes the activated state of this view. A view can be activated or not.
16764 * set are activated. (Um, yeah, we are deeply sorry about the terminology
16765 * here.) The activated state is propagated down to children of the view it
16768 * @param activated true if the view must be activated, false otherwise
16770 public void setActivated(boolean activated) { argument
16772 if (((mPrivateFlags & PFLAG_ACTIVATED) != 0) != activated) {
16773 mPrivateFlags = (mPrivateFlags & ~PFLAG_ACTIVATED) | (activated ? PFLAG_ACTIVATED : 0);
16776 dispatchSetActivated(activated);
16787 dispatchSetActivated(boolean activated) argument
[all...]

Completed in 164 milliseconds