HomeSort by relevance Sort by last modified time
    Searched full:attachmentpreview (Results 1 - 9 of 9) sorted by null

  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
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...]
AttachmentTile.java 244 public static final class AttachmentPreview implements Parcelable {
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) {
277 public AttachmentPreview(Attachment attachment, Bitmap preview) {
  /packages/apps/Messaging/res/layout/
attachment_preview.xml 17 <com.android.messaging.ui.AttachmentPreview
44 </com.android.messaging.ui.AttachmentPreview
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
AttachmentsView.java 39 import com.android.mail.ui.AttachmentTile.AttachmentPreview;
170 public ArrayList<AttachmentPreview> getAttachmentPreviews() {
177 public void setAttachmentPreviews(ArrayList<AttachmentPreview> previews) {
ComposeActivity.java 107 import com.android.mail.ui.AttachmentTile.AttachmentPreview;
537 final ArrayList<AttachmentPreview> previews;
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/
AttachmentPreview.java 49 public class AttachmentPreview extends ScrollView implements OnAttachmentClickListener {
62 public AttachmentPreview(final Context context, final AttributeSet attrs) {
MultiAttachmentLayout.java 278 AttachmentPreview.tryAnimateViewIn(attachment, attachmentWrapper.view);
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ComposeMessageView.java 58 import com.android.messaging.ui.AttachmentPreview;
121 private AttachmentPreview mAttachmentPreview;
309 mAttachmentPreview = (AttachmentPreview) findViewById(R.id.attachment_draft_view);
    [all...]
ConversationFragment.java 83 import com.android.messaging.ui.AttachmentPreview;
537 final AttachmentPreview attachmentView =
538 (AttachmentPreview) mComposeMessageView.findViewById(
    [all...]

Completed in 304 milliseconds