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);
117 removePdu(uri); // the pdu and/or slideshow might be half loaded. Make sure
181 SlideshowModel slideshow = null; local
186 slideshow = SlideshowModel.createFromPduBody(mContext
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
GalleryActivity.java 43 public static final String EXTRA_SLIDESHOW = "slideshow";
143 Boolean slideshow = intent.getBooleanExtra(EXTRA_SLIDESHOW, false); local
144 if (slideshow) {
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 78 // amount of space to leave in a slideshow for text and overhead.
229 SlideshowModel slideshow = new SlideshowModel(layouts, slides, document, pb, context); local
230 slideshow.mTotalMessageSize = totalMessageSize;
231 slideshow.registerModelChangedObserver(slideshow);
232 return slideshow;
624 * Determines whether this is a "simple" slideshow.
661 * 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 546 case WorkingMessage.SLIDESHOW: id = R.string.attachment_slideshow; break;
622 SlideshowModel slideshow = SlideshowModel.createFromPduBody(context, local
624 attachmentType = getAttachmentType(slideshow);
625 SlideModel firstSlide = slideshow.get(0);
660 // Look at the passed in slideshow and determine what type of attachment it is.
661 private static int getAttachmentType(SlideshowModel slideshow) {
662 int slideCount = slideshow.size();
667 return WorkingMessage.SLIDESHOW;
669 SlideModel slide = slideshow.get(0);
    [all...]
  /packages/apps/Mms/src/com/android/mms/data/
WorkingMessage.java 122 public static final int SLIDESHOW = 4;
132 // Slideshow for this message, if applicable. If it's a simple attachment,
133 // i.e. not SLIDESHOW, it will contain only one slide.
252 // If we get an empty slideshow, tear down all MMS
257 mAttachmentType = SLIDESHOW;
395 public static void removeThumbnailsFromCache(SlideshowModel slideshow) {
396 if (slideshow != null) {
399 Iterator<SlideModel> iterator = slideshow.iterator();
435 // Special case for deleting a slideshow. When ComposeMessageActivity gets told to
440 // a slide zero. In the case of an already attached slideshow, ensureSlideshow will d
548 SlideshowModel slideshow = SlideshowModel.createNew(mActivity); local
1211 final SlideshowModel slideshow = mSlideshow; local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
ComposeMessageActivity.java 307 private Uri mTempMmsUri; // Only used as a temporary to hold a slideshow uri
363 // The user wants to edit the slideshow. That requires us to persist the slideshow to
429 SlideshowModel slideshow = mWorkingMessage.getSlideshow(); local
430 if (slideshow == null) {
433 if (slideshow.isSimple()) {
434 MessageUtils.viewSimpleSlideshow(this, slideshow);
436 // The user wants to view the slideshow. That requires us to persist the slideshow to
483 case WorkingMessage.SLIDESHOW
    [all...]

Completed in 200 milliseconds