HomeSort by relevance Sort by last modified time
    Searched full:whichchild (Results 1 - 3 of 3) sorted by null

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewAnimator.java 24 public void setDisplayedChild(int whichChild) {
25 mWhichChild = whichChild;
26 if (whichChild >= getChildCount()) {
28 } else if (whichChild < 0) {
  /frameworks/base/core/java/android/widget/
AdapterViewAnimator.java 289 * @param whichChild the index of the child view to display
292 public void setDisplayedChild(int whichChild) {
293 setDisplayedChild(whichChild, true);
296 private void setDisplayedChild(int whichChild, boolean animate) {
298 mWhichChild = whichChild;
299 if (whichChild >= getWindowSize()) {
301 } else if (whichChild < 0) {
773 int whichChild;
778 SavedState(Parcelable superState, int whichChild) {
780 this.whichChild = whichChild
    [all...]
ViewAnimator.java 99 * @param whichChild the index of the child view to display
102 public void setDisplayedChild(int whichChild) {
103 mWhichChild = whichChild;
104 if (whichChild >= getChildCount()) {
106 } else if (whichChild < 0) {

Completed in 445 milliseconds