HomeSort by relevance Sort by last modified time
    Searched refs:mCurrentPhotoIndex (Results 1 - 2 of 2) sorted by null

  /development/samples/MultiResolution/src/com/example/android/multires/
MultiRes.java 28 private int mCurrentPhotoIndex = 0;
40 showPhoto(mCurrentPhotoIndex);
46 mCurrentPhotoIndex = (mCurrentPhotoIndex + 1)
48 showPhoto(mCurrentPhotoIndex);
55 outState.putInt("photo_index", mCurrentPhotoIndex);
61 mCurrentPhotoIndex = savedInstanceState.getInt("photo_index");
62 showPhoto(mCurrentPhotoIndex);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewController.java 134 private int mCurrentPhotoIndex;
265 mCurrentPhotoIndex = -1;
273 mCurrentPhotoIndex = intent.getIntExtra(Intents.EXTRA_PHOTO_INDEX, -1);
284 mCurrentPhotoIndex = savedInstanceState.getInt(STATE_CURRENT_INDEX_KEY);
436 outState.putInt(STATE_CURRENT_INDEX_KEY, mCurrentPhotoIndex);
554 mCurrentPhotoIndex = index;
578 if (mCurrentPhotoIndex < 0) {
579 mCurrentPhotoIndex = 0;
582 mViewPager.setCurrentItem(mCurrentPhotoIndex, false);
584 setViewActivated(mCurrentPhotoIndex);
    [all...]

Completed in 454 milliseconds