/external/ImageMagick/www/api/ |
image-view.php | 64 ImageView *CloneImageView(const ImageView *image_view) 86 ImageView *DestroyImageView(ImageView *image_view) 108 MagickBooleanType DuplexTransferImageViewMethod(const ImageView *source, 109 const ImageView *duplex,ImageView *destination,const ssize_t y, 124 MagickBooleanType DuplexTransferImageViewIterator(ImageView *source, 125 ImageView *duplex,ImageView *destination [all...] |
/frameworks/opt/chips/src/com/android/ex/chips/ |
DropdownChipLayouter.java | 27 import android.widget.ImageView; 178 bindIconToView(showImage, entry, viewHolder.imageView, type); 242 protected void bindIconToView(boolean showImage, RecipientEntry entry, ImageView view, 281 ImageView view) { 326 protected void bindPermissionRequestDismissView(ImageView view) { 354 * Each View must contain two TextViews (for display name and destination) and one ImageView 372 * Each View must contain two TextViews (for display name and destination) and one ImageView 428 * Returns an id for ImageView in an item View for showing photo image for a person. In default 436 * Returns an id for ImageView in an item View for showing the delete button. In default 450 * Returns an id for ImageView in an item View for dismissing the permission request. In defaul [all...] |
/frameworks/base/core/java/android/app/ |
ActivityTransitionCoordinator.java | 38 import android.widget.ImageView; 135 protected static final ImageView.ScaleType[] SCALE_TYPE_VALUES = ImageView.ScaleType.values(); 428 if (view instanceof ImageView) { 431 ImageView imageView = (ImageView) view; 432 ImageView.ScaleType scaleType = SCALE_TYPE_VALUES[scaleTypeInt]; 433 imageView.setScaleType(scaleType); 434 if (scaleType == ImageView.ScaleType.MATRIX) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
QSDetailItems.java | 33 import android.widget.ImageView; 55 private ImageView mEmptyIcon; 82 mEmptyIcon = (ImageView) mEmpty.findViewById(android.R.id.icon); 181 final ImageView iv = (ImageView) view.findViewById(android.R.id.icon); 204 final ImageView disconnect = (ImageView) view.findViewById(android.R.id.icon2);
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
ImageCardView.java | 26 import android.widget.ImageView; 27 import android.widget.ImageView.ScaleType; 32 * A subclass of {@link BaseCardView} with an {@link ImageView} as its main region. The 125 private ImageView mImageView; 129 private ImageView mBadgeImage; 178 mImageView = (ImageView) findViewById(R.id.main_image); 207 mBadgeImage = (ImageView) inflater.inflate(layoutId, mInfoArea, false); 288 public final ImageView getMainImageView() { 342 * Sets the layout dimensions of the ImageView. 352 * Returns the ImageView drawable [all...] |
/packages/apps/Contacts/src/com/android/contacts/editor/ |
CompactPhotoSelectionFragment.java | 41 import android.widget.ImageView; 226 final ImageView imageView = (ImageView) photoItemView.findViewById(R.id.image); 229 imageView, photo.updatedPhotoUri); 236 imageView, photoUri); 238 imageView.setImageBitmap(EditorUiUtils.getPhotoBitmap(photo.valuesDelta)); 243 final ImageView accountTypeImageView = (ImageView) 249 final ImageView checkImageView = (ImageView) photoItemView.findViewById(R.id.check) [all...] |
RawContactReadOnlyEditorView.java | 36 import android.widget.ImageView; 64 private ImageView mAccountIconImageView; 95 mAccountIconImageView = (ImageView) findViewById(android.R.id.icon); 228 final ImageView imageView = (ImageView) field.findViewById(R.id.kind_icon); 229 imageView.setImageDrawable(icon); 230 imageView.setContentDescription(iconContentDescription); 232 final ImageView imageView = (ImageView) field.findViewById(R.id.kind_icon) [all...] |
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
SharePopup.java | 42 import android.widget.ImageView; 59 private ImageView mThumbnail; 95 if (view instanceof ImageView) { 96 ((ImageView) view).setImageDrawable((Drawable) data); 121 mThumbnail = (ImageView) sharePopup.findViewById(R.id.thumbnail); 184 mThumbnail.setScaleType(ImageView.ScaleType.CENTER_CROP); 186 mThumbnail.setScaleType(ImageView.ScaleType.FIT_CENTER);
|
/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/ |
ConversationListItemView.java | 36 import android.widget.ImageView; 121 private ImageView mWorkProfileIconView; 126 private ImageView mContactCheckmarkView; 127 private ImageView mNotificationBellView; 128 private ImageView mFailedStatusIconView; 129 private ImageView mCrossSwipeArchiveLeftImageView; 130 private ImageView mCrossSwipeArchiveRightImageView; 149 mWorkProfileIconView = (ImageView) findViewById(R.id.work_profile_icon); 152 mContactCheckmarkView = (ImageView) findViewById(R.id.conversation_checkmark); 153 mNotificationBellView = (ImageView) findViewById(R.id.conversation_notification_bell) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
NotificationHeaderUtil.java | 25 import android.widget.ImageView; 63 ImageView icon = (ImageView) view.findViewById( 65 ImageView expand = (ImageView) view.findViewById( 73 ImageView imageView = (ImageView) view; 74 imageView.getDrawable().mutate(); 79 imageView.getDrawable().setColorFilter(grey, PorterDuff.Mode.SRC_ATOP) [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/location/ |
LocationModeTestActivity.java | 29 import android.widget.ImageView; 139 ImageView status = (ImageView) item.findViewById(R.id.status); 152 ImageView status = (ImageView) item.findViewById(R.id.status);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/security/ |
CAInstallNotificationVerifierActivity.java | 31 import android.widget.ImageView; 126 ImageView status = (ImageView) item.findViewById(R.id.ca_notify_status); 136 ImageView status = (ImageView) item.findViewById(R.id.ca_notify_status);
|
/developers/build/prebuilts/gradle/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/ |
MainActivity.java | 33 import android.widget.ImageView; 77 private ImageView mSecondIndicator; 78 private ImageView mFirstIndicator; 98 mFirstIndicator = (ImageView) findViewById(R.id.indicator_0); 99 mSecondIndicator = (ImageView) findViewById(R.id.indicator_1);
|
/developers/samples/android/ui/actionbarcompat/ActionBarCompat-SearchView/src/main/src/com/example/android/actionbarcompat/searchview/ |
AppListFragment.java | 30 import android.widget.ImageView; 147 // ImageView to display the application's icon 148 ImageView imageView = (ImageView) convertView.findViewById(R.id.icon); 154 imageView.setImageDrawable(icon); 157 // the ImageView 158 new ApplicationIconTask(imageView).execute(item); 221 * displays it in the given {@link ImageView} 224 private final ImageView mImageView [all...] |
/developers/samples/android/wearable/wear/JumpingJack/Wearable/src/main/java/com/example/android/wearable/jumpingjack/ |
MainActivity.java | 33 import android.widget.ImageView; 77 private ImageView mSecondIndicator; 78 private ImageView mFirstIndicator; 98 mFirstIndicator = (ImageView) findViewById(R.id.indicator_0); 99 mSecondIndicator = (ImageView) findViewById(R.id.indicator_1);
|
/development/samples/browseable/JumpingJack/src/com.example.android.wearable.jumpingjack/ |
MainActivity.java | 33 import android.widget.ImageView; 77 private ImageView mSecondIndicator; 78 private ImageView mFirstIndicator; 98 mFirstIndicator = (ImageView) findViewById(R.id.indicator_0); 99 mSecondIndicator = (ImageView) findViewById(R.id.indicator_1);
|
/frameworks/base/core/java/android/widget/ |
SimpleAdapter.java | 49 * <li> ImageView. The expected bind value is a resource id or a string and 50 * {@link #setViewImage(ImageView, int)} or {@link #setViewImage(ImageView, String)} is invoked. 224 } else if (v instanceof ImageView) { 226 setViewImage((ImageView) v, (Integer) data); 228 setViewImage((ImageView) v, text); 263 * Called by bindView() to set the image for an ImageView but only if 265 * handle binding to an ImageView. 267 * This method is called instead of {@link #setViewImage(ImageView, String)} 270 * @param v ImageView to receive an imag [all...] |
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/ |
GlifLayout.java | 32 import android.widget.ImageView; 190 final ImageView iconView = getIconView(); 197 final ImageView iconView = getIconView(); 201 protected ImageView getIconView() { 202 return (ImageView) findManagedViewById(R.id.suw_layout_icon);
|
/frameworks/rs/java/tests/Refocus/src/com/android/rs/test/ |
MainActivity.java | 14 import android.widget.ImageView; 24 ImageView mImgView; 26 ImageView mNewImgView; 35 mImgView = (ImageView) findViewById(R.id.image_view); 36 mNewImgView = (ImageView) findViewById(R.id.image_view_new);
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/ |
ListMenuItemView.java | 29 import android.widget.ImageView; 43 private ImageView mIconView; 48 private ImageView mSubMenuArrowView; 96 mSubMenuArrowView = (ImageView) findViewById(R.id.submenuarrow); 257 mIconView = (ImageView) inflater.inflate(R.layout.abc_list_menu_item_icon,
|
/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/ |
LiveWallpaperListAdapter.java | 33 import android.widget.ImageView; 96 ImageView image = (ImageView) view.findViewById(R.id.wallpaper_image); 97 ImageView icon = (ImageView) view.findViewById(R.id.wallpaper_icon);
|
/packages/apps/Messaging/src/com/android/messaging/ui/contact/ |
ContactListItemView.java | 25 import android.widget.ImageView; 55 private ImageView mContactCheckmarkView; 56 private ImageView mWorkProfileIcon; 72 mContactCheckmarkView = (ImageView) findViewById(R.id.contact_checkmark); 73 mWorkProfileIcon = (ImageView) findViewById(R.id.work_profile_icon);
|
/packages/apps/Settings/src/com/android/settings/gestures/ |
GesturePreference.java | 34 import android.widget.ImageView; 101 final ImageView imageView = (ImageView) holder.findViewById(R.id.gesture_image); 102 final ImageView playButton = (ImageView) holder.findViewById(R.id.gesture_play_button); 143 if (mPreviewImage != null && imageView.getDrawable() == null) { 144 imageView.setImageDrawable(mPreviewImage); 146 imageView.setVisibility(View.VISIBLE); 152 if (mVideoReady && imageView.getVisibility() == View.VISIBLE) [all...] |
/packages/apps/Settings/src/com/android/settings/nfc/ |
NfcPaymentPreference.java | 31 import android.widget.ImageView; 52 private ImageView mSettingsButtonView; 71 mSettingsButtonView = (ImageView) view.findViewById(R.id.settings_button); 173 holder.imageView = (ImageView) convertView.findViewById(R.id.banner); 179 holder.imageView.setImageDrawable(appInfo.banner); 180 holder.imageView.setTag(appInfo); 181 holder.imageView.setContentDescription(appInfo.label); 182 holder.imageView.setOnClickListener(this); 194 public ImageView imageView [all...] |
/packages/apps/Settings/src/com/android/settings/notification/ |
ImportanceSeekBarPreference.java | 31 import android.widget.ImageView; 109 final ImageView autoButton = (ImageView) view.findViewById(R.id.auto_importance); 119 private void applyAuto(ImageView autoButton) { 132 private void applyAutoUi(ImageView autoButton) {
|