Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1386)

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/photo_picker/PickerBitmapViewHolder.java

Issue 2758313002: Implement the new Photo picker, part two. (Closed)
Patch Set: Address Ted's comments (and sync to latest) Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/src/org/chromium/chrome/browser/photo_picker/PickerBitmapViewHolder.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/photo_picker/PickerBitmapViewHolder.java b/chrome/android/java/src/org/chromium/chrome/browser/photo_picker/PickerBitmapViewHolder.java
new file mode 100644
index 0000000000000000000000000000000000000000..70d18a837fd8316262c9c3918ccda1a786811a35
--- /dev/null
+++ b/chrome/android/java/src/org/chromium/chrome/browser/photo_picker/PickerBitmapViewHolder.java
@@ -0,0 +1,101 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.chrome.browser.photo_picker;
+
+import android.graphics.Bitmap;
+import android.graphics.Canvas;
+import android.graphics.Color;
+import android.graphics.Paint;
+import android.support.v7.widget.RecyclerView.ViewHolder;
+import android.text.TextUtils;
+
+import java.util.List;
+
+/**
+ * Holds on to a {@link PickerBitmapView} that displays information about a picker bitmap.
+ */
+public class PickerBitmapViewHolder extends ViewHolder {
+ // Our parent category.
+ private PickerCategoryView mCategoryView;
+
+ // The bitmap view we are holding on to.
+ private final PickerBitmapView mItemView;
+
+ // The request we are showing the bitmap for.
+ private PickerBitmap mBitmapDetails;
+
+ /**
+ * The PickerBitmapViewHolder.
+ * @param itemView The {@link PickerBitmapView} view for showing the image.
+ */
+ public PickerBitmapViewHolder(PickerBitmapView itemView) {
+ super(itemView);
+ mItemView = itemView;
+ }
+
+ /**
+ * The notification handler for when an image has been decoded.
+ * @param filePath The file path for the newly decoded image.
+ * @param bitmap The results of the decoding (or placeholder image, if failed).
+ */
+ public void imageDecodedCallback(String filePath, Bitmap bitmap) {
+ if (bitmap == null || bitmap.getWidth() == 0 || bitmap.getHeight() == 0) {
+ return;
+ }
+
+ if (!TextUtils.equals(mBitmapDetails.getFilePath(), filePath)) {
+ return;
+ }
+
+ mItemView.setThumbnailBitmap(bitmap);
+ }
+
+ /**
+ * Display a single item from |position| in the PickerCategoryView.
+ * @param categoryView The PickerCategoryView to use to fetch the image.
+ * @param position The position of the item to fetch.
+ */
+ public void displayItem(PickerCategoryView categoryView, int position) {
+ mCategoryView = categoryView;
+
+ List<PickerBitmap> pickerBitmaps = mCategoryView.getPickerBitmaps();
+ mBitmapDetails = pickerBitmaps.get(position);
+
+ if (mBitmapDetails.type() == PickerBitmap.CAMERA
+ || mBitmapDetails.type() == PickerBitmap.GALLERY) {
+ mItemView.initializeSpecialTile(mBitmapDetails);
+ return;
+ }
+
+ // TODO(finnur): Use cached image, if available.
+
+ // TODO(finnur): Use decoder instead.
+ int size = mCategoryView.getImageSize();
+ imageDecodedCallback(mBitmapDetails.getFilePath(), createPlaceholderBitmap(size, size));
+ }
+
+ /**
+ * Creates a placeholder bitmap.
+ * @param width The requested width of the resulting bitmap.
+ * @param height The requested height of the resulting bitmap.
+ * @return Placeholder bitmap.
+ */
+ // TODO(finnur): Remove once the decoder is in place.
+ private Bitmap createPlaceholderBitmap(int width, int height) {
+ Bitmap placeholder = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
+ Canvas canvas = new Canvas(placeholder);
+ Paint paint = new Paint();
+ paint.setColor(Color.GRAY);
+ canvas.drawRect(0, 0, (float) width, (float) height, paint);
+ return placeholder;
+ }
+
+ /**
+ * Returns the file path of the current request.
+ */
+ public String getFilePath() {
+ return mBitmapDetails == null ? null : mBitmapDetails.getFilePath();
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698