|
|
|
@ -5,6 +5,7 @@ import android.app.Activity;
|
|
|
|
|
import android.content.Context;
|
|
|
|
|
import android.content.res.TypedArray;
|
|
|
|
|
import android.graphics.Color;
|
|
|
|
|
import android.os.Build;
|
|
|
|
|
import android.os.Build.VERSION;
|
|
|
|
|
import android.os.Build.VERSION_CODES;
|
|
|
|
|
import android.support.annotation.NonNull;
|
|
|
|
@ -16,6 +17,7 @@ import android.view.animation.AlphaAnimation;
|
|
|
|
|
import android.view.animation.Animation;
|
|
|
|
|
import android.view.animation.Animation.AnimationListener;
|
|
|
|
|
import android.widget.FrameLayout;
|
|
|
|
|
import android.widget.ImageButton;
|
|
|
|
|
import android.widget.ImageView;
|
|
|
|
|
|
|
|
|
|
import com.bumptech.glide.DrawableTypeRequest;
|
|
|
|
@ -37,6 +39,7 @@ import org.thoughtcrime.securesms.mms.SlideDeck;
|
|
|
|
|
import org.thoughtcrime.securesms.util.FutureTaskListener;
|
|
|
|
|
import org.thoughtcrime.securesms.util.ListenableFutureTask;
|
|
|
|
|
import org.thoughtcrime.securesms.util.Util;
|
|
|
|
|
import org.thoughtcrime.securesms.util.ViewUtil;
|
|
|
|
|
|
|
|
|
|
import de.greenrobot.event.EventBus;
|
|
|
|
|
import ws.com.google.android.mms.pdu.PduPart;
|
|
|
|
@ -47,6 +50,7 @@ public class ThumbnailView extends FrameLayout {
|
|
|
|
|
private boolean showProgress = true;
|
|
|
|
|
private ImageView image;
|
|
|
|
|
private ProgressWheel progress;
|
|
|
|
|
private ImageView removeButton;
|
|
|
|
|
private int backgroundColorHint;
|
|
|
|
|
private int radius;
|
|
|
|
|
|
|
|
|
@ -68,8 +72,7 @@ public class ThumbnailView extends FrameLayout {
|
|
|
|
|
super(context, attrs, defStyle);
|
|
|
|
|
inflate(context, R.layout.thumbnail_view, this);
|
|
|
|
|
radius = getResources().getDimensionPixelSize(R.dimen.message_bubble_corner_radius);
|
|
|
|
|
image = (ImageView) findViewById(R.id.thumbnail_image);
|
|
|
|
|
progress = (ProgressWheel) findViewById(R.id.progress_wheel);
|
|
|
|
|
image = (ImageView) findViewById(R.id.thumbnail_image);
|
|
|
|
|
|
|
|
|
|
if (attrs != null) {
|
|
|
|
|
TypedArray typedArray = context.getTheme().obtainStyledAttributes(attrs, R.styleable.ThumbnailView, 0, 0);
|
|
|
|
@ -78,6 +81,15 @@ public class ThumbnailView extends FrameLayout {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
|
|
|
|
|
super.onLayout(changed, left, top, right, bottom);
|
|
|
|
|
if (removeButton != null) {
|
|
|
|
|
final int paddingHorizontal = removeButton.getWidth() / 2;
|
|
|
|
|
final int paddingVertical = removeButton.getHeight() / 2;
|
|
|
|
|
image.setPadding(paddingHorizontal, paddingVertical, paddingHorizontal, 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override protected void onAttachedToWindow() {
|
|
|
|
|
super.onAttachedToWindow();
|
|
|
|
|
if (!EventBus.getDefault().isRegistered(this)) EventBus.getDefault().registerSticky(this);
|
|
|
|
@ -88,12 +100,26 @@ public class ThumbnailView extends FrameLayout {
|
|
|
|
|
EventBus.getDefault().unregister(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private ProgressWheel getProgressWheel() {
|
|
|
|
|
if (progress == null) progress = ViewUtil.inflateStub(this, R.id.progress_wheel_stub);
|
|
|
|
|
return progress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void hideProgressWheel() {
|
|
|
|
|
if (progress != null) progress.setVisibility(GONE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private ImageView getRemoveButton() {
|
|
|
|
|
if (removeButton == null) removeButton = ViewUtil.inflateStub(this, R.id.remove_button_stub);
|
|
|
|
|
return removeButton;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
|
public void onEventAsync(final PartProgressEvent event) {
|
|
|
|
|
if (this.slide != null && event.partId.equals(this.slide.getPart().getPartId())) {
|
|
|
|
|
Util.runOnMain(new Runnable() {
|
|
|
|
|
@Override public void run() {
|
|
|
|
|
progress.setInstantProgress(((float)event.progress) / event.total);
|
|
|
|
|
getProgressWheel().setInstantProgress(((float)event.progress) / event.total);
|
|
|
|
|
if (event.progress >= event.total) animateOutProgress();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
@ -115,7 +141,7 @@ public class ThumbnailView extends FrameLayout {
|
|
|
|
|
String slideId = id + "::" + timestamp;
|
|
|
|
|
|
|
|
|
|
if (!slideId.equals(this.slideId)) {
|
|
|
|
|
progress.setVisibility(GONE);
|
|
|
|
|
hideProgressWheel();
|
|
|
|
|
image.setImageDrawable(null);
|
|
|
|
|
this.slide = null;
|
|
|
|
|
this.slideId = slideId;
|
|
|
|
@ -138,10 +164,10 @@ public class ThumbnailView extends FrameLayout {
|
|
|
|
|
|
|
|
|
|
this.slide = slide;
|
|
|
|
|
if (slide.isInProgress() && showProgress) {
|
|
|
|
|
progress.spin();
|
|
|
|
|
progress.setVisibility(VISIBLE);
|
|
|
|
|
getProgressWheel().spin();
|
|
|
|
|
getProgressWheel().setVisibility(VISIBLE);
|
|
|
|
|
} else {
|
|
|
|
|
progress.setVisibility(GONE);
|
|
|
|
|
hideProgressWheel();
|
|
|
|
|
}
|
|
|
|
|
buildGlideRequest(slide, masterSecret).into(image);
|
|
|
|
|
setOnClickListener(new ThumbnailClickDispatcher(thumbnailClickListener, slide));
|
|
|
|
@ -151,13 +177,17 @@ public class ThumbnailView extends FrameLayout {
|
|
|
|
|
this.thumbnailClickListener = listener;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setRemoveClickListener(OnClickListener listener) {
|
|
|
|
|
getRemoveButton().setOnClickListener(listener);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void clear() {
|
|
|
|
|
if (isContextValid()) Glide.clear(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setShowProgress(boolean showProgress) {
|
|
|
|
|
this.showProgress = showProgress;
|
|
|
|
|
if (progress.getVisibility() == View.VISIBLE && !showProgress) {
|
|
|
|
|
if (progress != null && progress.getVisibility() == View.VISIBLE && !showProgress) {
|
|
|
|
|
animateOutProgress();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -221,16 +251,17 @@ public class ThumbnailView extends FrameLayout {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void animateOutProgress() {
|
|
|
|
|
if (progress == null) return;
|
|
|
|
|
AlphaAnimation animation = new AlphaAnimation(1f, 0f);
|
|
|
|
|
animation.setDuration(200);
|
|
|
|
|
animation.setAnimationListener(new AnimationListener() {
|
|
|
|
|
@Override public void onAnimationStart(Animation animation) { }
|
|
|
|
|
@Override public void onAnimationRepeat(Animation animation) { }
|
|
|
|
|
@Override public void onAnimationEnd(Animation animation) {
|
|
|
|
|
progress.setVisibility(View.GONE);
|
|
|
|
|
getProgressWheel().setVisibility(View.GONE);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
progress.startAnimation(animation);
|
|
|
|
|
getProgressWheel().startAnimation(animation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private class SlideDeckListener implements FutureTaskListener<SlideDeck> {
|
|
|
|
@ -300,7 +331,7 @@ public class ThumbnailView extends FrameLayout {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static class PduThumbnailSetListener implements RequestListener<Object, GlideDrawable> {
|
|
|
|
|
private class PduThumbnailSetListener implements RequestListener<Object, GlideDrawable> {
|
|
|
|
|
private PduPart part;
|
|
|
|
|
|
|
|
|
|
public PduThumbnailSetListener(@NonNull PduPart part) {
|
|
|
|
@ -318,6 +349,11 @@ public class ThumbnailView extends FrameLayout {
|
|
|
|
|
Log.w(TAG, "onResourceReady() for a Bitmap. Saving.");
|
|
|
|
|
part.setThumbnail(((GlideBitmapDrawable)resource).getBitmap());
|
|
|
|
|
}
|
|
|
|
|
if (resource.getIntrinsicWidth() < resource.getIntrinsicHeight()) {
|
|
|
|
|
getRemoveButton().setPadding(0, 0, (getWidth() - resource.getIntrinsicWidth()) / 2, 0);
|
|
|
|
|
} else {
|
|
|
|
|
getRemoveButton().setPadding(0, (getHeight() - resource.getIntrinsicHeight()) / 2, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|