| /frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/ |
| OnboardingDemoSupportFragment.java | 27 import android.widget.ImageView; 53 private ImageView mContentBackgroundView; 54 private ImageView mContentAnimationView; 91 mContentBackgroundView = (ImageView) mContentView.findViewById(R.id.background_image); 92 mContentAnimationView = (ImageView) mContentView.findViewById(R.id.animation_image);
|
| /packages/apps/DeskClock/src/com/android/deskclock/ |
| AnalogClock.java | 27 import android.widget.ImageView; 64 private final ImageView mHourHand; 65 private final ImageView mMinuteHand; 66 private final ImageView mSecondHand; 89 final ImageView dial = new AppCompatImageView(context);
|
| AnimatorUtils.java | 34 import android.widget.ImageView; 86 public static final Property<ImageView, Integer> DRAWABLE_ALPHA = 87 new Property<ImageView, Integer>(Integer.class, "drawable.alpha") { 89 public Integer get(ImageView view) { 94 public void set(ImageView view, Integer value) { 99 public static final Property<ImageView, Integer> DRAWABLE_TINT = 100 new Property<ImageView, Integer>(Integer.class, "drawable.tint") { 102 public Integer get(ImageView view) { 107 public void set(ImageView view, Integer value) { 284 public static void startDrawableAnimation(ImageView view) [all...] |
| /packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/ |
| RootItem.java | 29 import android.widget.ImageView; 65 final ImageView icon = (ImageView) convertView.findViewById(android.R.id.icon); 68 final ImageView ejectIcon = (ImageView) convertView.findViewById(R.id.eject_icon);
|
| /packages/apps/Settings/src/com/android/settings/accessibility/ |
| ColorPreference.java | 27 import android.widget.ImageView; 87 final ImageView previewImage = (ImageView) view.findViewById(R.id.color_preview); 118 final ImageView swatch = (ImageView) view.findViewById(R.id.color_swatch);
|
| /packages/apps/TV/src/com/android/tv/menu/ |
| PlayControlsButton.java | 26 import android.widget.ImageView; 34 private final ImageView mButton; 35 private final ImageView mIcon; 60 mButton = (ImageView) findViewById(R.id.button); 61 mIcon = (ImageView) findViewById(R.id.icon);
|
| /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/tileinfo/ |
| LiveWallpaperInfo.java | 16 import android.widget.ImageView; 56 ImageView image = (ImageView) mView.findViewById(R.id.wallpaper_image); 57 ImageView icon = (ImageView) mView.findViewById(R.id.wallpaper_icon);
|
| /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/ |
| IconEditor.java | 27 import android.widget.ImageView; 28 import android.widget.ImageView.ScaleType; 69 final ImageView imageView = new ImageView(v.getContext()); 70 imageView.setScaleType(ScaleType.CENTER); 71 imageView.setOnTouchListener(new OnTouchListener(){ 84 setImage(imageView, iconResId); 94 imageView.setLayoutParams(flp); 96 imageViewHolder.addView(imageView); [all...] |
| /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
| PhotoCarousel.java | 30 import android.widget.ImageView; 175 private ImageView getBackface() { 176 return (ImageView) ((mPanel[0].getAlpha() < 0.5f) ? mPanel[0] : mPanel[1]); 186 ImageView destination = getBackface(); 214 ((ImageView) photo).setScaleType(ImageView.ScaleType.CENTER_CROP); 217 ((ImageView) photo).setScaleType(ImageView.ScaleType.CENTER_CROP); 220 ((ImageView) photo).setScaleType(ImageView.ScaleType.CENTER_INSIDE) [all...] |
| /developers/build/prebuilts/gradle/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/dragsource/ |
| DragSourceFragment.java | 38 import android.widget.ImageView; 50 * {@link android.widget.ImageView} widgets which can be a drag source. Images can be dropped 67 * Name of saved data that stores the dropped image URI on the local ImageView when set. 78 * Uri of the ImageView source when set. 95 ImageView imageView = (ImageView) view.findViewById(R.id.image_one); 96 setUpDraggableImage(imageView, imageUri); 97 imageView.setImageURI(imageUri); 100 imageView = (ImageView) view.findViewById(R.id.image_two) [all...] |
| /developers/samples/android/ui/window/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/dragsource/ |
| DragSourceFragment.java | 38 import android.widget.ImageView; 50 * {@link android.widget.ImageView} widgets which can be a drag source. Images can be dropped 67 * Name of saved data that stores the dropped image URI on the local ImageView when set. 78 * Uri of the ImageView source when set. 95 ImageView imageView = (ImageView) view.findViewById(R.id.image_one); 96 setUpDraggableImage(imageView, imageUri); 97 imageView.setImageURI(imageUri); 100 imageView = (ImageView) view.findViewById(R.id.image_two) [all...] |
| /development/samples/browseable/DragAndDropAcrossApps/DragSource/src/com.example.android/dragsource/ |
| DragSourceFragment.java | 38 import android.widget.ImageView; 50 * {@link android.widget.ImageView} widgets which can be a drag source. Images can be dropped 67 * Name of saved data that stores the dropped image URI on the local ImageView when set. 78 * Uri of the ImageView source when set. 95 ImageView imageView = (ImageView) view.findViewById(R.id.image_one); 96 setUpDraggableImage(imageView, imageUri); 97 imageView.setImageURI(imageUri); 100 imageView = (ImageView) view.findViewById(R.id.image_two) [all...] |
| /packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/ |
| ListDocumentHolder.java | 29 import android.widget.ImageView; 47 private final ImageView mIconMime; 48 private final ImageView mIconThumb; 49 private final ImageView mIconCheck; 62 mIconMime = (ImageView) itemView.findViewById(R.id.icon_mime); 63 mIconThumb = (ImageView) itemView.findViewById(R.id.icon_thumb); 64 mIconCheck = (ImageView) itemView.findViewById(R.id.icon_check);
|
| /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
| MainActivity.java | 15 import android.widget.ImageView; 155 public ImageView mImageView1; 156 public ImageView mImageView2; 168 mImageView1 = new ImageView(context); 172 mImageView2 = new ImageView(context); 197 private class RsAsyncTaskRunner extends AsyncTask<RsTaskParams, ImageView, Result> { 208 final ImageView v = params[0].mImageView1; 213 final ImageView v2 = params[0].mImageView2; 245 protected void onProgressUpdate(ImageView... progress) {
|
| /frameworks/support/leanback/src/main/java/androidx/leanback/widget/ |
| DetailsOverviewSharedElementHelper.java | 24 import android.widget.ImageView; 25 import android.widget.ImageView.ScaleType; 73 return snapshotView instanceof ImageView; 79 ImageView imageView = mViewHolder.mImageView; 80 mSavedScaleType = imageView.getScaleType(); 81 mSavedMatrix = mSavedScaleType == ScaleType.MATRIX ? imageView.getMatrix() : null; 88 private static void updateImageViewAfterScaleTypeChange(ImageView imageView) { 89 // enforcing imageView to update its internal bounds/matrix immediatel [all...] |
| /packages/apps/Dialer/java/com/android/dialer/contactphoto/ |
| ContactPhotoManager.java | 29 import android.widget.ImageView; 70 * #loadPhoto(ImageView, Uri, int, boolean, boolean, DefaultImageRequest)}, can be used to 211 ImageView view, 219 * Calls {@link #loadThumbnail(ImageView, long, boolean, boolean, DefaultImageRequest, 223 ImageView view, 273 ImageView view, 282 * Calls {@link #loadPhoto(ImageView, Uri, int, boolean, boolean, DefaultImageRequest, 290 ImageView view, 307 * Calls {@link #loadPhoto(ImageView, Uri, int, boolean, boolean, DefaultImageRequest, 315 ImageView view [all...] |
| /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/ |
| MainActivity.java | 32 import android.widget.ImageView; 119 ImageView image = (ImageView) view.findViewById(R.id.imageview_item);
|
| /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/ui/ |
| ImageDetailFragment.java | 25 import android.widget.ImageView; 39 private ImageView mImageView; 77 // Inflate and locate the main ImageView 79 mImageView = (ImageView) v.findViewById(R.id.imageView); 88 // Use the parent activity to load the image asynchronously into the ImageView (so a single 95 // Pass clicks on the ImageView to the parent activity to handle
|
| /developers/build/prebuilts/gradle/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/ |
| FingerprintUiHelper.java | 21 import android.widget.ImageView; 33 private final ImageView mIcon; 44 ImageView icon, TextView errorTextView, Callback callback) {
|
| /developers/samples/android/security/FingerprintDialog/Application/src/main/java/com/example/android/fingerprintdialog/ |
| FingerprintUiHelper.java | 21 import android.widget.ImageView; 33 private final ImageView mIcon; 44 ImageView icon, TextView errorTextView, Callback callback) {
|
| /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/ |
| MainActivity.java | 32 import android.widget.ImageView; 119 ImageView image = (ImageView) view.findViewById(R.id.imageview_item);
|
| /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/ui/ |
| ImageDetailFragment.java | 25 import android.widget.ImageView; 39 private ImageView mImageView; 77 // Inflate and locate the main ImageView 79 mImageView = (ImageView) v.findViewById(R.id.imageView); 88 // Use the parent activity to load the image asynchronously into the ImageView (so a single 95 // Pass clicks on the ImageView to the parent activity to handle
|
| /developers/samples/android/ui/transition/AdapterTransition/Application/src/main/java/com/example/android/adaptertransition/ |
| MeatAdapter.java | 26 import android.widget.ImageView; 44 * ImageView with ID of "meat_image" and a TextView with ID of "meat_title". 74 holder.image = (ImageView) view.findViewById(R.id.meat_image); 98 public ImageView image;
|
| /development/samples/ApiDemos/src/com/example/android/apis/view/ |
| List8.java | 29 import android.widget.ImageView; 106 // Make an ImageView to show a photo 107 ImageView i = new ImageView(mContext);
|
| /development/samples/Home/src/com/example/android/home/ |
| Wallpaper.java | 30 import android.widget.ImageView; 137 ImageView i = new ImageView(mContext);
|