Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/ui/
DMultiAttachmentLayout.java35 import com.android.messaging.ui.AsyncImageView.AsyncImageViewDelayLoader;
195 if (viewWrapper.view instanceof AsyncImageView) { in setColorFilter()
196 ((AsyncImageView) viewWrapper.view).setColorFilter(color); in setColorFilter()
203 if (viewWrapper.view instanceof AsyncImageView) { in clearColorFilter()
204 ((AsyncImageView) viewWrapper.view).clearColorFilter(); in clearColorFilter()
257 if (view instanceof AsyncImageView && mImageViewDelayLoader != null) { in buildViews()
258 AsyncImageView asyncImageView = (AsyncImageView) view; in buildViews()
319 if (view instanceof AsyncImageView) { in onMeasure()
325 ((AsyncImageView) view).setImageResourceId(imageRequest); in onMeasure()
DAsyncImageView.java55 public class AsyncImageView extends ImageView implements MediaResourceLoadListener<ImageResource> { class
102 public AsyncImageView(final Context context, final AttributeSet attrs) { in AsyncImageView() method in AsyncImageView
105 final TypedArray attr = context.obtainStyledAttributes(attrs, R.styleable.AsyncImageView, in AsyncImageView()
417 private final HashSet<AsyncImageView> mAttachedViews;
420 mAttachedViews = new HashSet<AsyncImageView>(); in AsyncImageViewDelayLoader()
423 private void registerView(final AsyncImageView view) { in registerView()
427 private void unregisterView(final AsyncImageView view) { in unregisterView()
452 for (final AsyncImageView view : mAttachedViews) { in onResumeLoading()
DVideoThumbnailView.java64 private final AsyncImageView mThumbnailImage;
153 mThumbnailImage = (AsyncImageView) findViewById(R.id.video_thumbnail_image); in VideoThumbnailView()
DAttachmentPreviewFactory.java168 final AsyncImageView imageView = (AsyncImageView) view.findViewById( in createImagePreview()
DContactIconView.java40 public class ContactIconView extends AsyncImageView {
/packages/apps/Messaging/tests/src/com/android/messaging/ui/mediapicker/
DGalleryGridItemViewTest.java29 import com.android.messaging.ui.AsyncImageView;
58 final AsyncImageView imageView = (AsyncImageView) view.findViewById(R.id.thumbnail); in verifyContent()
/packages/apps/Messaging/tests/src/com/android/messaging/ui/conversationlist/
DConversationListItemViewTest.java32 import com.android.messaging.ui.AsyncImageView;
99 final AsyncImageView imagePreviewView = in verifyContent()
100 (AsyncImageView) view.findViewById(R.id.conversation_image_preview); in verifyContent()
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
DGalleryGridItemView.java36 import com.android.messaging.ui.AsyncImageView;
59 private AsyncImageView mImageView;
82 mImageView = (AsyncImageView) findViewById(R.id.thumbnail); in onFinishInflate()
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DConversationMessageAdapter.java26 import com.android.messaging.ui.AsyncImageView;
28 import com.android.messaging.ui.AsyncImageView.AsyncImageViewDelayLoader;
DConversationMessageView.java54 import com.android.messaging.ui.AsyncImageView;
55 import com.android.messaging.ui.AsyncImageView.AsyncImageViewDelayLoader;
95 private AsyncImageView mMessageImageView;
138 mMessageImageView = (AsyncImageView) findViewById(R.id.message_image); in onFinishInflate()
/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
DConversationListItemView.java48 import com.android.messaging.ui.AsyncImageView;
131 private AsyncImageView mImagePreviewView;
158 mImagePreviewView = (AsyncImageView) findViewById(R.id.conversation_image_preview); in onFinishInflate()
/packages/apps/Messaging/tests/src/com/android/messaging/ui/
DMultiAttachmentLayoutTest.java63 if (child instanceof AsyncImageView) { in verifyContent()