Searched defs:thumbnail (Results 1 - 15 of 15) sorted by relevance

/frameworks/support/v4/java/android/support/v4/app/
H A DActivityOptionsCompat.java83 * Create an ActivityOptions specifying an animation where a thumbnail is
89 * those bounds will be filled in for you based on the initial thumbnail
92 * @param source The View that this thumbnail is animating from. This
94 * @param thumbnail The bitmap that will be shown as the initial thumbnail
102 Bitmap thumbnail, int startX, int startY) {
105 ActivityOptionsCompatJB.makeThumbnailScaleUpAnimation(source, thumbnail,
101 makeThumbnailScaleUpAnimation(View source, Bitmap thumbnail, int startX, int startY) argument
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DActivityOptionsCompatJB.java40 Bitmap thumbnail, int startX, int startY) {
42 ActivityOptions.makeThumbnailScaleUpAnimation(source, thumbnail, startX, startY));
39 makeThumbnailScaleUpAnimation(View source, Bitmap thumbnail, int startX, int startY) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DTaskDescription.java88 public void setThumbnail(Drawable thumbnail) { argument
89 mThumbnail = thumbnail;
H A DRecentsPanelView.java153 // If we set the default thumbnail now, we avoid an onLayout when we update
154 // the thumbnail later (if they both have the same dimensions)
484 private void updateThumbnail(ViewHolder h, Drawable thumbnail, boolean show, boolean anim) { argument
485 if (thumbnail != null) {
489 h.thumbnailViewImage.setImageDrawable(thumbnail);
494 h.thumbnailViewDrawable.getIntrinsicWidth() != thumbnail.getIntrinsicWidth() ||
495 h.thumbnailViewDrawable.getIntrinsicHeight() != thumbnail.getIntrinsicHeight()) {
500 float scale = mThumbnailWidth / (float) thumbnail.getIntrinsicWidth();
513 h.thumbnailViewDrawable = thumbnail;
525 // Look for a view showing this thumbnail, t
[all...]
/frameworks/base/core/java/android/app/
H A DActivityOptions.java58 * Bitmap for thumbnail animation.
64 * Start X position of thumbnail animation.
70 * Start Y position of thumbnail animation.
222 * Create an ActivityOptions specifying an animation where a thumbnail
229 * thumbnail location and size provided here.
231 * @param source The View that this thumbnail is animating from. This
233 * @param thumbnail The bitmap that will be shown as the initial thumbnail
241 Bitmap thumbnail, int startX, int startY) {
242 return makeThumbnailScaleUpAnimation(source, thumbnail, start
240 makeThumbnailScaleUpAnimation(View source, Bitmap thumbnail, int startX, int startY) argument
263 makeThumbnailScaleUpAnimation(View source, Bitmap thumbnail, int startX, int startY, OnAnimationStartedListener listener) argument
285 makeThumbnailScaleDownAnimation(View source, Bitmap thumbnail, int startX, int startY, OnAnimationStartedListener listener) argument
290 makeThumbnailAnimation(View source, Bitmap thumbnail, int startX, int startY, OnAnimationStartedListener listener, boolean scaleUp) argument
[all...]
H A DActivityManager.java665 public Bitmap thumbnail; field in class:ActivityManager.RunningTaskInfo
700 if (thumbnail != null) {
702 thumbnail.writeToParcel(dest, 0);
717 thumbnail = Bitmap.CREATOR.createFromParcel(source);
719 thumbnail = null;
815 * to the index of the thumbnail returned by {@link #getTaskThumbnails(int)}.
H A DActivityManagerNative.java435 Bitmap thumbnail = data.readInt() != 0
438 activityStopped(token, map, thumbnail, description);
689 Bitmap thumbnail = data.readInt() != 0
692 reportThumbnail(token, thumbnail, description);
2461 Bitmap thumbnail, CharSequence description) throws RemoteException
2468 if (thumbnail != null) {
2470 thumbnail.writeToParcel(data, 0);
2820 Bitmap thumbnail, CharSequence description) throws RemoteException
2826 if (thumbnail != null) {
2828 thumbnail
2460 activityStopped(IBinder token, Bundle state, Bitmap thumbnail, CharSequence description) argument
2819 reportThumbnail(IBinder token, Bitmap thumbnail, CharSequence description) argument
[all...]
H A DActivityThread.java2920 Bitmap thumbnail = mAvailThumbnailBitmap;
2922 if (thumbnail == null) {
2938 thumbnail = Bitmap.createBitmap(r.activity.getResources().getDisplayMetrics(),
2940 thumbnail.eraseColor(0);
2944 if (thumbnail != null) {
2950 cv.setBitmap(thumbnail);
2951 if (!r.activity.onCreateThumbnail(thumbnail, cv)) {
2952 mAvailThumbnailBitmap = thumbnail;
2953 thumbnail = null;
2961 "Unable to create thumbnail o
3077 Bitmap thumbnail; field in class:ActivityThread.StopInfo
[all...]
H A DIActivityManager.java102 Bitmap thumbnail, CharSequence description) throws RemoteException;
130 Bitmap thumbnail, CharSequence description) throws RemoteException;
101 activityStopped(IBinder token, Bundle state, Bitmap thumbnail, CharSequence description) argument
129 reportThumbnail(IBinder token, Bitmap thumbnail, CharSequence description) argument
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifData.java56 * Gets the compressed thumbnail. Returns null if there is no compressed
57 * thumbnail.
66 * Sets the compressed thumbnail.
68 protected void setCompressedThumbnail(byte[] thumbnail) { argument
69 mThumbnail = thumbnail;
73 * Returns true it this header contains a compressed thumbnail.
194 * Removes the thumbnail and its related tags. IFD1 will be removed.
/frameworks/base/services/java/com/android/server/wm/
H A DAppWindowAnimator.java46 // Special surface for thumbnail animation.
47 SurfaceControl thumbnail; field in class:AppWindowAnimator
117 if (thumbnail != null) {
118 thumbnail.destroy();
119 thumbnail = null;
160 if (WindowManagerService.SHOW_TRANSACTIONS) WindowManagerService.logSurface(thumbnail,
161 "thumbnail", "POS " + tmpFloats[Matrix.MTRANS_X]
163 thumbnail.setPosition(tmpFloats[Matrix.MTRANS_X], tmpFloats[Matrix.MTRANS_Y]);
164 if (WindowManagerService.SHOW_TRANSACTIONS) WindowManagerService.logSurface(thumbnail,
165 "thumbnail", "alph
[all...]
/frameworks/ex/carousel/test/src/com/android/carouseltest/
H A DTaskSwitcherActivity.java69 Bitmap thumbnail; field in class:TaskSwitcherActivity.ActivityDescription
79 thumbnail = _thumbnail;
88 thumbnail = null;
145 Bitmap bitmap = desc.thumbnail == null ? mBlankBitmap : desc.thumbnail;
177 Log.v(TAG, "New thumbnail for id=" + id + ", dimensions=" + w + "x" + h
181 info.thumbnail = bitmap;
249 if (r.thumbnail != null) {
250 int thumbWidth = r.thumbnail.getWidth();
251 int thumbHeight = r.thumbnail
[all...]
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDevice.cpp345 void* thumbnail = device->getThumbnail(objectID, length); local
346 if (! thumbnail)
349 env->SetByteArrayRegion(array, 0, length, (const jbyte *)thumbnail);
351 free(thumbnail);
/frameworks/base/services/java/com/android/server/am/
H A DActivityStack.java221 * screenshots, one for the Recents thumbnail and one for the pauseActivity thumbnail.
694 // the expense of capturing a thumbnail, since we will never show it.
830 final void activityStoppedLocked(ActivityRecord r, Bundle icicle, Bitmap thumbnail, argument
844 r.updateThumbnail(thumbnail, description);
H A DActivityManagerService.java5241 public final void activityStopped(IBinder token, Bundle icicle, Bitmap thumbnail, argument
5258 r.task.stack.activityStoppedLocked(r, icicle, thumbnail, description);
6766 if (localLOGV) Slog.v(TAG, "Requesting top thumbnail");
6771 Slog.w(TAG, "Exception thrown when requesting thumbnail", e);
6780 // activity should never have a canned thumbnail! Oh well.
7261 Bitmap thumbnail, CharSequence description) {
7262 //System.out.println("Report thumbnail for " + token + ": " + thumbnail);
7264 sendPendingThumbnail(null, token, thumbnail, description, true);
7269 Bitmap thumbnail, CharSequenc
7260 reportThumbnail(IBinder token, Bitmap thumbnail, CharSequence description) argument
7268 sendPendingThumbnail(ActivityRecord r, IBinder token, Bitmap thumbnail, CharSequence description, boolean always) argument
[all...]

Completed in 472 milliseconds