OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mThumbs
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Camera/src/com/android/camera/ui/
RotateImageView.java
141
private Drawable[]
mThumbs
;
149
mThumbs
= null;
163
if (
mThumbs
== null || !mEnableAnimation) {
164
mThumbs
= new Drawable[2];
165
mThumbs
[1] = new BitmapDrawable(getContext().getResources(), mThumb);
166
setImageDrawable(
mThumbs
[1]);
168
mThumbs
[0] =
mThumbs
[1];
169
mThumbs
[1] = new BitmapDrawable(getContext().getResources(), mThumb);
170
mThumbTransition = new TransitionDrawable(
mThumbs
);
[
all
...]
/packages/apps/LegacyCamera/src/com/android/camera/ui/
RotateImageView.java
139
private Drawable[]
mThumbs
;
147
mThumbs
= null;
161
if (
mThumbs
== null || !mEnableAnimation) {
162
mThumbs
= new Drawable[2];
163
mThumbs
[1] = new BitmapDrawable(getContext().getResources(), mThumb);
164
setImageDrawable(
mThumbs
[1]);
166
mThumbs
[0] =
mThumbs
[1];
167
mThumbs
[1] = new BitmapDrawable(getContext().getResources(), mThumb);
168
mThumbTransition = new TransitionDrawable(
mThumbs
);
[
all
...]
/packages/apps/Launcher2/src/com/android/launcher2/
WallpaperChooserDialogFragment.java
60
private ArrayList<Integer>
mThumbs
;
193
mThumbs
= new ArrayList<Integer>(24);
221
mThumbs
.add(thumbRes);
235
return
mThumbs
.size();
257
int thumbRes =
mThumbs
.get(position);
Completed in 355 milliseconds