Searched refs:AttachmentPreview (Results 1 - 8 of 8) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DAttachmentTile.java244 public static final class AttachmentPreview implements Parcelable { class in class:AttachmentTile
259 public static final Parcelable.Creator<AttachmentPreview> CREATOR
260 = new Parcelable.Creator<AttachmentPreview>() {
262 public AttachmentPreview createFromParcel(Parcel in) {
263 return new AttachmentPreview(in);
267 public AttachmentPreview[] newArray(int size) {
268 return new AttachmentPreview[size];
272 private AttachmentPreview(Parcel in) { method in class:AttachmentTile.AttachmentPreview
277 public AttachmentPreview(Attachment attachment, Bitmap preview) { method in class:AttachmentTile.AttachmentPreview
H A DAttachmentTileGrid.java35 import com.android.mail.ui.AttachmentTile.AttachmentPreview;
55 private final HashMap<String, AttachmentPreview> mAttachmentPreviews;
237 public ArrayList<AttachmentPreview> getAttachmentPreviews() {
241 public void setAttachmentPreviews(ArrayList<AttachmentPreview> previews) {
243 for (AttachmentPreview preview : previews) {
257 attachmentIdentifier, new AttachmentPreview(attachment, preview));
268 final AttachmentPreview attachmentPreview = mAttachmentPreviews.get(
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DAttachmentsView.java36 import com.android.mail.ui.AttachmentTile.AttachmentPreview;
166 public ArrayList<AttachmentPreview> getAttachmentPreviews() {
173 public void setAttachmentPreviews(ArrayList<AttachmentPreview> previews) {
H A DComposeActivity.java106 import com.android.mail.ui.AttachmentTile.AttachmentPreview;
536 final ArrayList<AttachmentPreview> previews;
/packages/apps/Messaging/src/com/android/messaging/ui/
H A DAttachmentPreview.java49 public class AttachmentPreview extends ScrollView implements OnAttachmentClickListener { class in inherits:ScrollView,OnAttachmentClickListener
62 public AttachmentPreview(final Context context, final AttributeSet attrs) { method in class:AttachmentPreview
H A DMultiAttachmentLayout.java278 AttachmentPreview.tryAnimateViewIn(attachment, attachmentWrapper.view);
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
H A DComposeMessageView.java58 import com.android.messaging.ui.AttachmentPreview;
121 private AttachmentPreview mAttachmentPreview;
309 mAttachmentPreview = (AttachmentPreview) findViewById(R.id.attachment_draft_view);
H A DConversationFragment.java83 import com.android.messaging.ui.AttachmentPreview;
537 final AttachmentPreview attachmentView =
538 (AttachmentPreview) mComposeMessageView.findViewById(

Completed in 82 milliseconds