Searched defs:activated (Results 1 - 2 of 2) sorted by last modified time

/frameworks/base/core/java/android/view/
H A DView.java14899 * Changes the activated state of this view. A view can be activated or not.
14905 * set are activated. (Um, yeah, we are deeply sorry about the terminology
14906 * here.) The activated state is propagated down to children of the view it
14909 * @param activated true if the view must be activated, false otherwise
14911 public void setActivated(boolean activated) { argument
14912 if (((mPrivateFlags & PFLAG_ACTIVATED) != 0) != activated) {
14913 mPrivateFlags = (mPrivateFlags & ~PFLAG_ACTIVATED) | (activated ? PFLAG_ACTIVATED : 0);
14916 dispatchSetActivated(activated);
14927 dispatchSetActivated(boolean activated) argument
[all...]
H A DViewGroup.java2980 public void dispatchSetActivated(boolean activated) { argument
2984 children[i].setActivated(activated);

Completed in 56 milliseconds