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

/frameworks/base/core/java/android/widget/
H A DViewAnimator.java98 * @param whichChild the index of the child view to display
101 public void setDisplayedChild(int whichChild) { argument
102 mWhichChild = whichChild;
103 if (whichChild >= getChildCount()) {
105 } else if (whichChild < 0) {
H A DAdapterViewAnimator.java292 * @param whichChild the index of the child view to display
295 public void setDisplayedChild(int whichChild) { argument
296 setDisplayedChild(whichChild, true);
299 private void setDisplayedChild(int whichChild, boolean animate) { argument
301 mWhichChild = whichChild;
302 if (whichChild >= getWindowSize()) {
304 } else if (whichChild < 0) {
775 int whichChild; field in class:AdapterViewAnimator.SavedState
780 SavedState(Parcelable superState, int whichChild) { argument
782 this.whichChild
[all...]

Completed in 69 milliseconds