Searched refs:video (Results 1 - 12 of 12) sorted by relevance
/packages/apps/Mms/src/com/android/mms/ui/ |
H A D | SlideViewInterface.java | 33 void setVideo(String name, Uri video); argument
|
H A D | SlideshowPresenter.java | 219 * @param video 222 protected void presentVideo(SlideViewInterface view, VideoModel video, argument 225 view.setVideo(video.getSrc(), video.getUri()); 235 view.setVideoVisibility(video.isVisible()); 237 MediaAction action = video.getCurrentAction(); 245 view.seekVideo(video.getSeekTo());
|
H A D | SlideshowEditor.java | 175 VideoModel video = new VideoModel(mContext, newVideo, 178 slide.add(video); 179 slide.updateDuration(video.getDuration());
|
H A D | MmsThumbnailPresenter.java | 74 // Right now we're only handling image and video loaded callbacks. 89 private void presentVideoThumbnail(SlideViewInterface view, VideoModel video) { argument 90 mItemLoadedFuture = video.loadThumbnailBitmap(mImageLoadedCallback);
|
H A D | VideoAttachmentView.java | 36 * This class provides an embedded editor/viewer of video attachment. 89 public void setVideo(String name, Uri video) { argument 91 Bitmap bitmap = createVideoThumbnail(mContext, video); 113 // Assume this is a corrupt video file.
|
H A D | BasicSlideEditorView.java | 131 public void setVideo(String name, Uri video) { argument 133 Bitmap bitmap = VideoAttachmentView.createVideoThumbnail(mContext, video);
|
H A D | ImageAttachmentView.java | 101 public void setVideo(String name, Uri video) { argument
|
H A D | SlideListItemView.java | 114 public void setVideo(String name, Uri video) { argument 123 // TODO: get a thumbnail from the video 139 // Stopping video is not needed in this view.
|
H A D | SlideshowAttachmentView.java | 103 public void setVideo(String name, Uri video) { argument 104 // TODO: get a thumbnail from the video
|
H A D | SlideView.java | 139 public void setVideo(String name, Uri video) { argument 150 Log.v(TAG, "Changing video source to " + video); 153 mVideoView.setVideoURI(video); 336 Log.v(TAG, "Starting video playback."); 345 Log.v(TAG, "Stopping video playback."); 354 Log.v(TAG, "Pausing video playback."); 364 Log.v(TAG, "Seeking video playback to " + seekTo); 451 * The better UI for the MMS conformance message could be putting the image/video 455 * is that the AbsoluteLayout has ability to play image and video i [all...] |
H A D | AudioAttachmentView.java | 151 public void setVideo(String name, Uri video) { argument
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
H A D | Thumbnail.java | 157 Media video = getLastVideoThumbnail(resolver); 158 if (image == null && video == null) return null; 162 // If there is only image or video, get its thumbnail. If both exist, 164 if (image != null && (video == null || image.dateTaken >= video.dateTaken)) { 169 bitmap = Video.Thumbnails.getThumbnail(resolver, video.id, 171 lastMedia = video; 275 // Assume this is a corrupt video file 277 // Assume this is a corrupt video file.
|
Completed in 107 milliseconds