HomeSort by relevance Sort by last modified time
    Searched refs:ImageView (Results 351 - 375 of 1034) sorted by null

<<11121314151617181920>>

  /development/samples/browseable/WearSpeakerSample/src/com.example.android.wearable.speaker/
MainActivity.java 33 import android.widget.ImageView;
220 ImageView[] thumbs = new ImageView[3];
222 thumbs[i] = (ImageView) findViewById(thumbResources[i]);
225 ImageView expandedView = (ImageView) findViewById(R.id.expanded);
UIAnimation.java 27 import android.widget.ImageView;
38 private final ImageView[] mThumbs;
39 private ImageView expandedImageView;
46 public UIAnimation(View containerView, ImageView[] thumbs, ImageView expandedView,
78 final ImageView thumbView = mThumbs[index];
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
NotificationHeaderViewWrapper.java 29 import android.widget.ImageView;
56 private ImageView mIcon;
61 private ImageView mWorkProfileImage;
120 private int resolveColor(ImageView icon) {
172 * {@link ImageView#setCropToPadding(boolean)} on all ImageViews.
179 if (child instanceof ImageView) {
180 ((ImageView) child).setCropToPadding(true);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AttachmentTile.java 29 import android.widget.ImageView;
30 import android.widget.ImageView.ScaleType;
47 private ImageView mIcon;
48 private ImageView mDefaultIcon;
89 mIcon = (ImageView) findViewById(R.id.attachment_tile_image);
90 mDefaultIcon = (ImageView) findViewById(R.id.attachment_default_image);
ConversationTipView.java 31 import android.widget.ImageView;
97 final ImageView startImage = (ImageView) mContent.findViewById(R.id.conversation_tip_icon1);
98 final ImageView dismiss = (ImageView) mContent.findViewById(R.id.dismiss_icon);
111 private void bindIcon(ImageView image, ImageAttrSet attr) {
  /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 40 import android.widget.ImageView;
139 protected static final ImageView.ScaleType[] SCALE_TYPE_VALUES = ImageView.ScaleType.values();
494 if (view instanceof ImageView) {
497 ImageView imageView = (ImageView) view;
498 ImageView.ScaleType scaleType = SCALE_TYPE_VALUES[scaleTypeInt];
499 imageView.setScaleType(scaleType);
500 if (scaleType == ImageView.ScaleType.MATRIX)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleCursorTreeAdapterTest.java 33 import android.widget.ImageView;
149 ImageView view = new ImageView(mContext);
159 view = new ImageView(mContext);
165 view = new ImageView(mContext);
175 view = new ImageView(mContext);
255 protected void setViewImage(ImageView v, String value) {
  /packages/apps/Dialer/java/com/android/incallui/sessiondata/
MultimediaFragment.java 32 import android.widget.ImageView;
59 private ImageView avatarImageView;
153 ((ImageView) view.findViewById(R.id.spam_image))
162 ImageView mainImage = (ImageView) view.findViewById(R.id.answer_message_image);
205 avatarImageView = ((ImageView) view.findViewById(R.id.answer_message_avatar));
218 public ImageView getAvatarImageView() {
  /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);
  /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/build/prebuilts/gradle/WearHighBandwidthNetworking/Wearable/src/main/java/com/example/android/wearable/wear/wearhighbandwidthnetworking/
MainActivity.java 31 import android.widget.ImageView;
65 private ImageView mConnectivityIcon;
69 private ImageView mButtonIcon;
96 mConnectivityIcon = (ImageView) findViewById(R.id.connectivity_icon);
103 mButtonIcon = (ImageView) findViewById(R.id.button_icon);
  /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);
  /developers/samples/android/wearable/wear/WearHighBandwidthNetworking/Wearable/src/main/java/com/example/android/wearable/wear/wearhighbandwidthnetworking/
MainActivity.java 31 import android.widget.ImageView;
65 private ImageView mConnectivityIcon;
69 private ImageView mButtonIcon;
96 mConnectivityIcon = (ImageView) findViewById(R.id.connectivity_icon);
103 mButtonIcon = (ImageView) findViewById(R.id.button_icon);
  /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);
  /development/samples/browseable/WearHighBandwidthNetworking/src/com.example.android.wearable.wear.wearhighbandwidthnetworking/
MainActivity.java 31 import android.widget.ImageView;
65 private ImageView mConnectivityIcon;
69 private ImageView mButtonIcon;
96 mConnectivityIcon = (ImageView) findViewById(R.id.connectivity_icon);
103 mButtonIcon = (ImageView) findViewById(R.id.button_icon);
  /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...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
AccountHeaderPresenter.java 24 import android.widget.ImageView;
65 private ImageView mAccountHeaderIcon;
66 private ImageView mAccountHeaderExpanderIcon;
81 mAccountHeaderIcon = (ImageView) container.findViewById(R.id.account_type_icon);
82 mAccountHeaderExpanderIcon = (ImageView) container.findViewById(R.id.account_expander_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/nfc/
NfcPaymentPreference.java 30 import android.widget.ImageView;
50 private ImageView mSettingsButtonView;
69 mSettingsButtonView = (ImageView) view.findViewById(R.id.settings_button);
171 holder.imageView = (ImageView) convertView.findViewById(R.id.banner);
177 holder.imageView.setImageDrawable(appInfo.banner);
178 holder.imageView.setTag(appInfo);
179 holder.imageView.setContentDescription(appInfo.label);
180 holder.imageView.setOnClickListener(this);
192 public ImageView imageView
    [all...]

Completed in 1462 milliseconds

<<11121314151617181920>>