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

/frameworks/base/core/java/android/widget/
H A DViewAnimator.java97 * @param whichChild the index of the child view to display
100 public void setDisplayedChild(int whichChild) { argument
101 mWhichChild = whichChild;
102 if (whichChild >= getChildCount()) {
104 } else if (whichChild < 0) {
H A DAdapterViewAnimator.java286 * @param whichChild the index of the child view to display
289 public void setDisplayedChild(int whichChild) { argument
290 setDisplayedChild(whichChild, true);
293 private void setDisplayedChild(int whichChild, boolean animate) { argument
295 mWhichChild = whichChild;
296 if (whichChild >= getWindowSize()) {
298 } else if (whichChild < 0) {
761 int whichChild; field in class:AdapterViewAnimator.SavedState
766 SavedState(Parcelable superState, int whichChild) { argument
768 this.whichChild
[all...]

Completed in 49 milliseconds