Searched refs:activated (Results 1 - 9 of 9) 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/base/core/java/android/widget/
H A DYearPickerView.java190 final boolean activated = mActivatedYear == year;
192 if (hasNewView || v.isActivated() != activated) {
194 if (activated && ITEM_TEXT_ACTIVATED_APPEARANCE != 0) {
200 v.setActivated(activated);
H A DRadialTimePickerView.java692 // activated states.
701 // activated states.
824 // The activated index can touch a range of elements.
830 final boolean activated = (activatedFloor == i || activatedCeil == i);
831 if (activatedOnly && !activated) {
836 | (showActivated && activated ? StateSet.VIEW_STATE_ACTIVATED : 0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DUserDetailItemView.java124 boolean activated = ArrayUtils.contains(getDrawableState(), android.R.attr.state_activated);
125 mName.setTypeface(activated ? mActivatedTypeface : mRegularTypeface);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DRowPresenter.java40 * animation is started. Selected status may control activated status of the row (see
48 * Row title is shown when row is expanded. Expanded status may control activated status
55 * The activated status of a row is applied to the row view and it's children via
57 * The activated status is typically used to control {@link BaseCardView} info region visibility.
58 * The row's activated status can be controlled by selected status and/or expanded status.
66 * or expanded status, application can control activated status by its own.
68 * activated status of row view.
98 * Don't synchronize row view activated status with selected status or expanded status,
104 * Synchronizes row view's activated status to expand status of the row view holder.
109 * Synchronizes row view's activated statu
212 setActivated(boolean activated) argument
[all...]
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.java366 void setActivated(View view, boolean activated); argument
820 public void setActivated(View view, boolean activated) { argument
1142 public void setActivated(View view, boolean activated) { argument
1143 ViewCompatHC.setActivated(view, activated);
2715 * Changes the activated state of this view. A view can be activated or not.
2721 * @param activated true if the view must be activated, false otherwise
2723 public static void setActivated(View view, boolean activated) { argument
2724 IMPL.setActivated(view, activated);
[all...]
/frameworks/base/core/java/android/view/
H A DView.java17997 * Changes the activated state of this view. A view can be activated or not.
18003 * set are activated. (Um, yeah, we are deeply sorry about the terminology
18004 * here.) The activated state is propagated down to children of the view it
18007 * @param activated true if the view must be activated, false otherwise
18009 public void setActivated(boolean activated) { argument
18011 if (((mPrivateFlags & PFLAG_ACTIVATED) != 0) != activated) {
18012 mPrivateFlags = (mPrivateFlags & ~PFLAG_ACTIVATED) | (activated ? PFLAG_ACTIVATED : 0);
18015 dispatchSetActivated(activated);
18026 dispatchSetActivated(boolean activated) argument
[all...]
H A DViewGroup.java3713 public void dispatchSetActivated(boolean activated) { argument
3717 children[i].setActivated(activated);

Completed in 279 milliseconds