HomeSort by relevance Sort by last modified time
    Searched full:slide (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /packages/apps/Mms/src/com/android/mms/ui/
MmsThumbnailPresenter.java 42 SlideModel slide = ((SlideshowModel) mModel).get(0); local
43 if (slide != null) {
44 presentFirstSlide((SlideViewInterface) mView, slide);
48 private void presentFirstSlide(SlideViewInterface view, SlideModel slide) {
51 if (slide.hasImage()) {
52 presentImageThumbnail(view, slide.getImage());
53 } else if (slide.hasVideo()) {
54 presentVideoThumbnail(view, slide.getVideo());
55 } else if (slide.hasAudio()) {
56 presentAudioThumbnail(view, slide.getAudio())
    [all...]
SlideshowEditor.java 35 * An utility to edit contents of a slide.
51 * Add a new slide to the end of message.
53 * @return true if success, false if reach the max slide number.
61 * Add a new slide at the specified position in the message.
63 * @return true if success, false if reach the max slide number.
70 SlideModel slide = new SlideModel(mModel); local
75 slide.add(text);
77 mModel.add(position, slide);
86 * Remove one slide.
104 * Remove the text of the specified slide
127 SlideModel slide = mModel.get(position); local
148 SlideModel slide = mModel.get(position); local
156 SlideModel slide = mModel.get(position); local
    [all...]
SlideEditorActivity.java 68 * This activity allows user to edit the contents of a slide.
271 SlideModel slide = mSlideshowModel.get(mPosition);
272 if (slide != null && slide.hasVideo()) {
325 SlideModel slide = mSlideshowModel.get(mPosition); local
327 if (slide == null) {
336 if (slide.hasText() && !TextUtils.isEmpty(slide.getText().getText())) {
343 if (slide.hasImage()) {
346 } else if (!slide.hasVideo())
407 SlideModel slide = mSlideshowModel.get(mPosition); local
    [all...]
SlideshowEditActivity.java 116 Log.e(TAG, "Failed to initialize the slide-list.", e);
125 // Add slide.
227 // Selected one slide.
310 // Select the new slide.
341 Log.e(TAG, "Failed to initialize the slide-list.", e);
375 // Show slide number.
380 SlideModel slide = getItem(position); local
381 int dur = slide.getDuration() / 1000;
AdaptableSlideViewInterface.java 21 * The view interface of a slide which elements can be resize.
AttachmentEditor.java 146 SlideModel slide = mSlideshow.get(0); local
147 if (slide.hasImage()) {
155 } else if (slide.hasVideo()) {
163 } else if (slide.hasAudio()) {
SlideViewInterface.java 26 * Defines the interfaces of the view to show contents of a slide.
MessageUtils.java 361 // Only one slide in the slide-show.
362 SlideModel slide = model.get(0); local
363 if (slide.hasVideo()) {
367 if (slide.hasAudio() && slide.hasImage()) {
371 if (slide.hasAudio()) {
375 if (slide.hasImage()) {
379 if (slide.hasText()) {
541 SlideModel slide = slideshow.get(0) local
    [all...]
MessageItem.java 220 SlideModel slide = mSlideshow.get(0); local
221 if ((slide != null) && slide.hasText()) {
222 TextModel tm = slide.getText();
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 93 for (SlideModel slide : mSlides) {
94 increaseMessageSize(slide.getSlideSize());
95 slide.setParent(this);
139 // Create slide models.
150 // Create media models for each slide.
162 * This is for slide duration value set.
163 * If mms server does not support slide duration.
183 * because the mmsc does not support the slide duration.
188 * If a slide has an image and an audio/video element
190 * The Image disappear before the slide play done. so have to matc
217 SlideModel slide = new SlideModel((int) (par.getDur() * 1000), mediaSet); local
431 SlideModel slide = (SlideModel) object; local
501 SlideModel slide = mSlides.remove(location); local
511 SlideModel slide = mSlides.get(location); local
    [all...]
SlideModel.java 73 * @param duration The duration of the slide.
77 * be added into the slide due to a slide cannot contain image
261 * Add a MediaModel to the slide. If the slide has already contained
265 * @param object A media object to be added into the slide.
268 * be added into the slide due to a slide cannot contain image
457 Log.v(TAG, "Start to play slide: " + this);
462 Log.v(TAG, "Stop playing slide: " + this)
    [all...]
SmilHelper.java 309 for (SlideModel slide : slideshow) {
312 par.setDur(slide.getDuration() / 1000f);
314 addParElementEventListeners((EventTarget) par, slide);
317 for (MediaModel media : slide) {
414 EventTarget target, SlideModel slide) {
415 // To play the slide with SmilPlayer, we should add it
417 target.addEventListener(SMIL_SLIDE_START_EVENT, slide, false);
418 target.addEventListener(SMIL_SLIDE_END_EVENT, slide, false);
  /external/webkit/WebCore/manual-tests/
transition-delay.html 25 #container.slide > .box {
47 <div id="container" onclick="this.className = 'slide'">
animate-duration.html 25 -webkit-animation-name: "slide";
40 @-webkit-keyframes slide {
  /packages/apps/Mms/src/com/android/mms/data/
WorkingMessage.java 120 // i.e. not SLIDESHOW, it will contain only one slide.
246 SlideModel slide = mSlideshow.get(0); local
247 if (slide.hasImage()) {
249 } else if (slide.hasVideo()) {
251 } else if (slide.hasAudio()) {
349 * @param append true if we should add the attachment to a new slide
358 // Make sure mSlideshow is set up and has a slide.
385 // We added a new slide and what we attempted to insert on the slide failed.
386 // Delete that slide, otherwise we could end up with a bunch of blank slides
456 SlideModel slide = new SlideModel(slideshow); local
467 SlideModel slide = mSlideshow.get(0); local
533 SlideModel slide = mSlideshow.get(mSlideshow.size() - 1); local
637 SlideModel slide = mSlideshow.get(0); local
    [all...]
  /build/tools/droiddoc/templates/assets/
carousel.js 136 droid(slideName); // do this function when slide is clicked
141 var slideWidth = 144; // width of a slide including all margins, etc.
142 var slidesAtOnce = 3; // no. of slides to appear at once (requires odd number to have a centered slide)
154 // - determines the centering point of the slide strip
178 function slide(goal, id, go_left, cp) { function
286 slide(motionDistance, slideList, 0, currentStripPosition);
291 slide(motionDistance, slideList, 1, rightStripPosition);
  /packages/apps/Mms/res/values/
strings.xml 111 <!-- Button text on edit slide screen indicating the user wants to finish editing that slide -->
114 <!-- Menu item in slideshow edit screen for moving the selected slide up in the order -->
116 <!-- Menu item in slideshow edit screen for moving the selected slide down in the order -->
118 <!-- Menu item in slideshow edit screen for removing the selected slide from the slideshow -->
119 <string name="remove_slide">Remove slide</string>
120 <!-- Menu item in slideshow edit screen for adding a new slide to the slideshow -->
121 <string name="add_slide">Add slide</string>
122 <!-- Text displayed below "Add slide" item in slideshow edit screen -->
123 <string name="add_slide_hint">Select to create new slide.</string
    [all...]
  /packages/apps/Gallery/res/values/
strings.xml 103 <!-- menu pick to start a slide show -->
216 <string name="pref_gallery_slideshow_interval_summary">Select how long each slide displays in the show</string>
221 <!-- slide show interval "N seconds" where N is 2 -->
223 <!-- slide show interval "N seconds" where N is 3 -->
225 <!-- slide show interval "N seconds" where N is 4 -->
239 <string name="pref_gallery_slideshow_transition_summary">Select the effect used when moving from one slide to the next</string>
245 <!-- Slide show transition to fade in and fade out -->
247 <!-- Slide show transition to slide in and out from the left and right -->
248 <item>Slide left - right</item
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
MiniKeyboardKeyDetector.java 30 // Top slide allowance is slightly longer (sqrt(2) times) than other edges.
  /packages/apps/Mms/res/values-en-rGB/
strings.xml 43 <string name="view_slideshow" msgid="4990460971211388453">"View slide show"</string>
66 <string name="remove_slide" msgid="2225604354024914900">"Remove slide"</string>
67 <string name="add_slide" msgid="9140721399423564187">"Add slide"</string>
68 <string name="add_slide_hint" msgid="563319570849475501">"Select to create new slide."</string>
69 <string name="discard_slideshow" msgid="5054239124146413609">"Discard slide show"</string>
114 <string name="cannot_add_picture_and_video" msgid="4721981351130823908">"Cannot add video and picture to one slide."</string>
122 <string name="adding_attachments" msgid="2423616900586221924">"Please wait while the items are added to the slide show."</string>
129 <string name="duration_selector_title" msgid="5981097971537625852">"Duration for slide "</string>
130 <string name="layout_selector_title" msgid="7344600117972450771">"Slide show layout "</string>
255 <string name="attach_slideshow" msgid="3497422151091037063">"Slide show"</string
    [all...]
  /development/samples/ApiDemos/res/layout/
linear_layout_5.xml 55 room to slide to the right.)
  /packages/apps/Gallery/res/values-en-rGB/
strings.xml 86 <string name="pref_gallery_slideshow_interval_summary" msgid="329876327077905033">"Select how long each slide will be displayed in the show"</string>
94 <string name="pref_gallery_slideshow_transition_summary" msgid="2390320265891546846">"Select the effect used when moving from one slide to the next"</string>
98 <item msgid="403116336404005687">"Slide left-right"</item>
99 <item msgid="4901733079450971731">"Slide up-down"</item>
  /packages/apps/Mms/res/xml/
mms_config.xml 69 <!-- If true, The mms support slide duration.
70 If false, The mms does not support slide duration and we have to
  /packages/apps/Gallery/res/values-tl/
strings.xml 86 <string name="pref_gallery_slideshow_interval_summary" msgid="329876327077905033">"Piliin kung gaano katagal ipapakita ang bawat slide sa show"</string>
94 <string name="pref_gallery_slideshow_transition_summary" msgid="2390320265891546846">"Piliin ang epektong ginamit kapag naglilipat mula sa isang slide patungo sa susunod"</string>
98 <item msgid="403116336404005687">"I-slide pakaliwa - pakanan"</item>
99 <item msgid="4901733079450971731">"Mag-slide pataas - pababa"</item>
104 <string name="pref_gallery_slideshow_shuffle_title" msgid="3677508579783015598">"I-shuffle ang mga slide"</string>
  /frameworks/base/core/java/android/view/animation/
AnimationUtils.java 186 * Make an animation for objects becoming visible. Uses a slide and fade
207 * Make an animation for objects becoming invisible. Uses a slide and fade
229 * Make an animation for objects becoming visible. Uses a slide up and fade

Completed in 284 milliseconds

1 2 3 4 5