HomeSort by relevance Sort by last modified time
    Searched refs:AttachmentPreview (Results 1 - 4 of 4) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AttachmentTile.java 243 public static final class AttachmentPreview implements Parcelable {
258 public static final Parcelable.Creator<AttachmentPreview> CREATOR
259 = new Parcelable.Creator<AttachmentPreview>() {
261 public AttachmentPreview createFromParcel(Parcel in) {
262 return new AttachmentPreview(in);
266 public AttachmentPreview[] newArray(int size) {
267 return new AttachmentPreview[size];
271 private AttachmentPreview(Parcel in) {
276 public AttachmentPreview(Attachment attachment, Bitmap preview) {
AttachmentTileGrid.java 35 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(
270 if (attachmentPreview != null) {
271 return attachmentPreview.preview
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
AttachmentsView.java 36 import com.android.mail.ui.AttachmentTile.AttachmentPreview;
166 public ArrayList<AttachmentPreview> getAttachmentPreviews() {
173 public void setAttachmentPreviews(ArrayList<AttachmentPreview> previews) {
ComposeActivity.java 103 import com.android.mail.ui.AttachmentTile.AttachmentPreview;
503 final ArrayList<AttachmentPreview> previews;
    [all...]

Completed in 633 milliseconds