HomeSort by relevance Sort by last modified time
    Searched refs:mCurrentPhotoIndex (Results 1 - 3 of 3) 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/activity/src/com/android/ex/photo/
PhotoViewActivity.java 108 private int mCurrentPhotoIndex;
212 mCurrentPhotoIndex = -1;
220 mCurrentPhotoIndex = intent.getIntExtra(Intents.EXTRA_PHOTO_INDEX, -1);
229 mCurrentPhotoIndex = savedInstanceState.getInt(STATE_CURRENT_INDEX_KEY);
328 outState.putInt(STATE_CURRENT_INDEX_KEY, mCurrentPhotoIndex);
445 mCurrentPhotoIndex = index;
470 if (mCurrentPhotoIndex < 0) {
471 mCurrentPhotoIndex = 0;
474 mViewPager.setCurrentItem(mCurrentPhotoIndex, false);
476 setViewActivated(mCurrentPhotoIndex);
    [all...]
  /frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
PhotoViewActivity.java 107 private int mCurrentPhotoIndex;
211 mCurrentPhotoIndex = -1;
219 mCurrentPhotoIndex = intent.getIntExtra(Intents.EXTRA_PHOTO_INDEX, -1);
228 mCurrentPhotoIndex = savedInstanceState.getInt(STATE_CURRENT_INDEX_KEY);
327 outState.putInt(STATE_CURRENT_INDEX_KEY, mCurrentPhotoIndex);
444 mCurrentPhotoIndex = index;
469 if (mCurrentPhotoIndex < 0) {
470 mCurrentPhotoIndex = 0;
473 mViewPager.setCurrentItem(mCurrentPhotoIndex, false);
475 setViewActivated(mCurrentPhotoIndex);
    [all...]

Completed in 379 milliseconds