HomeSort by relevance Sort by last modified time
    Searched defs:slideshow (Results 1 - 6 of 6) sorted by null

  /packages/apps/Mms/src/com/android/mms/util/
PduLoaderManager.java 46 * PduLoaderManager is used to asynchronously load mms pdu's and then build a slideshow model
48 * uses the PduCache built into the mms framework. It also manages a local cache of slideshow
49 * models. The slideshow cache uses SoftReferences to hang onto the slideshow.
86 final SlideshowModel slideshow = (requestSlideshow && !DEBUG_DISABLE_CACHE) ? local
89 final boolean slideshowExists = (!requestSlideshow || slideshow != null);
97 PduLoaded pduLoaded = new PduLoaded(cacheEntry.getPdu(), slideshow);
170 SlideshowModel slideshow = null;
175 slideshow = SlideshowModel.createFromPduBody(mContext,
183 final SlideshowModel resultSlideshow = slideshow;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
Gallery.java 44 public static final String EXTRA_SLIDESHOW = "slideshow";
135 Boolean slideshow = intent.getBooleanExtra(EXTRA_SLIDESHOW, false); local
136 if (slideshow) {
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 64 private static final String TAG = "Mms/slideshow";
75 // amount of space to leave in a slideshow for text and overhead.
224 SlideshowModel slideshow = new SlideshowModel(layouts, slides, document, pb, context); local
225 slideshow.mTotalMessageSize = totalMessageSize;
226 slideshow.registerModelChangedObserver(slideshow);
227 return slideshow;
593 * Determines whether this is a "simple" slideshow.
630 * Resize all the resizeable media objects to fit in the remaining size of the slideshow.
  /packages/apps/Mms/src/com/android/mms/transaction/
MessagingNotification.java 506 case WorkingMessage.SLIDESHOW: id = R.string.attachment_slideshow; break;
580 SlideshowModel slideshow = SlideshowModel.createFromPduBody(context, local
582 attachmentType = getAttachmentType(slideshow);
583 SlideModel firstSlide = slideshow.get(0);
617 // Look at the passed in slideshow and determine what type of attachment it is.
618 private static int getAttachmentType(SlideshowModel slideshow) {
619 int slideCount = slideshow.size();
624 return WorkingMessage.SLIDESHOW;
626 SlideModel slide = slideshow.get(0);
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
WorkingMessage.java 115 public static final int SLIDESHOW = 4;
125 // Slideshow for this message, if applicable. If it's a simple attachment,
126 // i.e. not SLIDESHOW, it will contain only one slide.
245 // If we get an empty slideshow, tear down all MMS
250 mAttachmentType = SLIDESHOW;
388 public static void removeThumbnailsFromCache(SlideshowModel slideshow) {
389 if (slideshow != null) {
392 Iterator<SlideModel> iterator = slideshow.iterator();
428 // Special case for deleting a slideshow. When ComposeMessageActivity gets told to
433 // a slide zero. In the case of an already attached slideshow, ensureSlideshow will d
547 SlideshowModel slideshow = SlideshowModel.createNew(mActivity); local
1176 final SlideshowModel slideshow = mSlideshow; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 294 private Uri mTempMmsUri; // Only used as a temporary to hold a slideshow uri
329 // The user wants to edit the slideshow. That requires us to persist the slideshow to
395 SlideshowModel slideshow = mWorkingMessage.getSlideshow(); local
396 if (slideshow == null) {
399 if (slideshow.isSimple()) {
400 MessageUtils.viewSimpleSlideshow(this, slideshow);
402 // The user wants to view the slideshow. That requires us to persist the slideshow to
449 case WorkingMessage.SLIDESHOW
    [all...]

Completed in 419 milliseconds