Searched refs:whichChild (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java288 * @param whichChild the index of the child view to display
291 public void setDisplayedChild(int whichChild) { argument
292 setDisplayedChild(whichChild, true);
295 private void setDisplayedChild(int whichChild, boolean animate) { argument
297 mWhichChild = whichChild;
298 if (whichChild >= getWindowSize()) {
300 } else if (whichChild < 0) {
772 int whichChild; field in class:AdapterViewAnimator.SavedState
777 SavedState(Parcelable superState, int whichChild) { argument
779 this.whichChild
[all...]
H A DViewAnimator.java99 * @param whichChild the index of the child view to display
102 public void setDisplayedChild(int whichChild) { argument
103 mWhichChild = whichChild;
104 if (whichChild >= getChildCount()) {
106 } else if (whichChild < 0) {

Completed in 124 milliseconds