Home
last modified time | relevance | path

Searched refs:mThumbs (Results 1 – 1 of 1) sorted by relevance

/packages/apps/LegacyCamera/src/com/android/camera/ui/
DRotateImageView.java139 private Drawable[] mThumbs; field in RotateImageView
147 mThumbs = null; in setBitmap()
161 if (mThumbs == null || !mEnableAnimation) { in setBitmap()
162 mThumbs = new Drawable[2]; in setBitmap()
163 mThumbs[1] = new BitmapDrawable(getContext().getResources(), mThumb); in setBitmap()
164 setImageDrawable(mThumbs[1]); in setBitmap()
166 mThumbs[0] = mThumbs[1]; in setBitmap()
167 mThumbs[1] = new BitmapDrawable(getContext().getResources(), mThumb); in setBitmap()
168 mThumbTransition = new TransitionDrawable(mThumbs); in setBitmap()