OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AsyncImageView
(Results
1 - 12
of
12
) sorted by null
/packages/apps/Messaging/src/com/android/messaging/ui/
MultiAttachmentLayout.java
35
import com.android.messaging.ui.
AsyncImageView
.AsyncImageViewDelayLoader;
194
if (viewWrapper.view instanceof
AsyncImageView
) {
195
((
AsyncImageView
) viewWrapper.view).setColorFilter(color);
202
if (viewWrapper.view instanceof
AsyncImageView
) {
203
((
AsyncImageView
) viewWrapper.view).clearColorFilter();
256
if (view instanceof
AsyncImageView
&& mImageViewDelayLoader != null) {
257
AsyncImageView
asyncImageView
= (
AsyncImageView
) view;
258
asyncImageView
.setDelayLoader(mImageViewDelayLoader)
[
all
...]
AsyncImageView.java
55
public class
AsyncImageView
extends ImageView implements MediaResourceLoadListener<ImageResource> {
57
// 100ms delay before disposing the image in case the
AsyncImageView
is re-added to the UI
60
//
AsyncImageView
has a 1-1 binding relationship with an ImageRequest instance that requests
65
// should be delivered to the
AsyncImageView
via onMediaResourceLoaded() callback.
102
public
AsyncImageView
(final Context context, final AttributeSet attrs) {
105
final TypedArray attr = context.obtainStyledAttributes(attrs, R.styleable.
AsyncImageView
,
117
* The main entrypoint for
AsyncImageView
to load image resource given an ImageRequestDescriptor
407
* As a performance optimization, the consumer of the
AsyncImageView
may opt to delay loading
415
private final HashSet<
AsyncImageView
> mAttachedViews;
418
mAttachedViews = new HashSet<
AsyncImageView
>();
[
all
...]
ContactIconView.java
36
* A view used to render contact icons. This class derives from
AsyncImageView
, so it loads contact
37
* icons from MediaResourceManager, and it handles more rendering logic than an
AsyncImageView
40
public class ContactIconView extends
AsyncImageView
{
VideoThumbnailView.java
47
* When in this mode the VideoThumbnailView is a lightweight
AsyncImageView
with an ImageButton
64
private final
AsyncImageView
mThumbnailImage;
153
mThumbnailImage = (
AsyncImageView
) findViewById(R.id.video_thumbnail_image);
AttachmentPreviewFactory.java
168
final
AsyncImageView
imageView = (
AsyncImageView
) view.findViewById(
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
GalleryGridItemView.java
32
import com.android.messaging.ui.
AsyncImageView
;
54
private
AsyncImageView
mImageView;
72
mImageView = (
AsyncImageView
) findViewById(R.id.image);
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationMessageAdapter.java
26
import com.android.messaging.ui.
AsyncImageView
;
28
import com.android.messaging.ui.
AsyncImageView
.AsyncImageViewDelayLoader;
ConversationMessageView.java
54
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);
[
all
...]
/packages/apps/Messaging/tests/src/com/android/messaging/ui/conversationlist/
ConversationListItemViewTest.java
32
import com.android.messaging.ui.
AsyncImageView
;
104
final
AsyncImageView
imagePreviewView =
105
(
AsyncImageView
) view.findViewById(R.id.conversation_image_preview);
/packages/apps/Messaging/tests/src/com/android/messaging/ui/mediapicker/
GalleryGridItemViewTest.java
29
import com.android.messaging.ui.
AsyncImageView
;
58
final
AsyncImageView
imageView = (
AsyncImageView
) view.findViewById(R.id.image);
/packages/apps/Messaging/tests/src/com/android/messaging/ui/
MultiAttachmentLayoutTest.java
63
if (child instanceof
AsyncImageView
) {
/packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
ConversationListItemView.java
48
import com.android.messaging.ui.
AsyncImageView
;
131
private
AsyncImageView
mImagePreviewView;
158
mImagePreviewView = (
AsyncImageView
) findViewById(R.id.conversation_image_preview);
Completed in 233 milliseconds