OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AttachmentPreview
(Results
1 - 4
of
4
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
AttachmentTile.java
233
public static final class
AttachmentPreview
implements Parcelable {
248
public static final Parcelable.Creator<
AttachmentPreview
> CREATOR
249
= new Parcelable.Creator<
AttachmentPreview
>() {
251
public
AttachmentPreview
createFromParcel(Parcel in) {
252
return new
AttachmentPreview
(in);
256
public
AttachmentPreview
[] newArray(int size) {
257
return new
AttachmentPreview
[size];
261
private
AttachmentPreview
(Parcel in) {
266
public
AttachmentPreview
(Attachment attachment, Bitmap preview) {
AttachmentTileGrid.java
32
import com.android.mail.ui.AttachmentTile.
AttachmentPreview
;
51
private final HashMap<String,
AttachmentPreview
> mAttachmentPreviews;
205
public ArrayList<
AttachmentPreview
> getAttachmentPreviews() {
209
public void setAttachmentPreviews(ArrayList<
AttachmentPreview
> previews) {
211
for (
AttachmentPreview
preview : previews) {
225
attachmentIdentifier, new
AttachmentPreview
(attachment, preview));
236
final
AttachmentPreview
attachmentPreview
= mAttachmentPreviews.get(
238
if (
attachmentPreview
!= null) {
239
return
attachmentPreview
.preview
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
AttachmentsView.java
37
import com.android.mail.ui.AttachmentTile.
AttachmentPreview
;
163
public ArrayList<
AttachmentPreview
> getAttachmentPreviews() {
170
public void setAttachmentPreviews(ArrayList<
AttachmentPreview
> previews) {
ComposeActivity.java
94
import com.android.mail.ui.AttachmentTile.
AttachmentPreview
;
445
ArrayList<
AttachmentPreview
> previews;
[
all
...]
Completed in 67 milliseconds