ImageViewCustom.java 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. package com.owncloud.android.ui.preview;
  2. import android.content.Context;
  3. import android.graphics.Bitmap;
  4. import android.graphics.Canvas;
  5. import android.graphics.Movie;
  6. import android.os.Build;
  7. import android.support.v7.widget.AppCompatImageView;
  8. import android.util.AttributeSet;
  9. import android.view.View;
  10. import com.owncloud.android.lib.common.utils.Log_OC;
  11. import java.io.FileInputStream;
  12. import java.io.InputStream;
  13. public class ImageViewCustom extends AppCompatImageView {
  14. private static final String TAG = ImageViewCustom.class.getSimpleName();
  15. private static final boolean IS_ICS_OR_HIGHER = Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH;
  16. private static final boolean IS_VERSION_BUGGY_ON_RECYCLES =
  17. Build.VERSION.SDK_INT == Build.VERSION_CODES.JELLY_BEAN_MR1 ||
  18. Build.VERSION.SDK_INT == Build.VERSION_CODES.JELLY_BEAN_MR2;
  19. private int mBitmapHeight;
  20. private int mBitmapWidth;
  21. private Movie mGifMovie;
  22. private int mMovieWidth, mMovieHeight;
  23. private long mMovieDuration;
  24. private long mMovieRunDuration;
  25. private long mLastTick;
  26. public ImageViewCustom(Context context) {
  27. super(context);
  28. }
  29. public ImageViewCustom(Context context, AttributeSet attrs) {
  30. super(context, attrs);
  31. }
  32. public ImageViewCustom(Context context, AttributeSet attrs, int defStyle) {
  33. super(context, attrs, defStyle);
  34. }
  35. @Override
  36. protected void onDraw(Canvas canvas) {
  37. if(IS_ICS_OR_HIGHER && checkIfMaximumBitmapExceed(canvas) || IS_VERSION_BUGGY_ON_RECYCLES ) {
  38. // Software type is set with two targets:
  39. // 1. prevent that bitmaps larger than maximum textures allowed are shown as black views in devices
  40. // with LAYER_TYPE_HARDWARE enabled by default;
  41. // 2. grant that bitmaps are correctly de-allocated from memory in versions suffering the bug fixed in
  42. // https://android.googlesource.com/platform/frameworks/base/+/034de6b1ec561797a2422314e6ef03e3cd3e08e0;
  43. //
  44. setLayerType(View.LAYER_TYPE_SOFTWARE, null);
  45. }
  46. if(mGifMovie != null) {
  47. long nowTick = android.os.SystemClock.uptimeMillis();
  48. if (mLastTick == 0) {
  49. mMovieRunDuration = 0;
  50. } else {
  51. mMovieRunDuration += nowTick - mLastTick;
  52. if(mMovieRunDuration > mMovieDuration) {
  53. mMovieRunDuration = 0;
  54. }
  55. }
  56. mGifMovie.setTime((int) mMovieRunDuration);
  57. float scale = getScaleToViewFactor(mGifMovie, canvas);
  58. canvas.scale(scale, scale);
  59. canvas.translate(((float) getWidth() / scale - (float) mGifMovie.width()) / 2f,
  60. ((float) getHeight() / scale - (float) mGifMovie.height()) /2f);
  61. mGifMovie.draw(canvas, 0, 0);
  62. mLastTick = nowTick;
  63. invalidate();
  64. } else {
  65. super.onDraw(canvas);
  66. }
  67. }
  68. private float getScaleToViewFactor(Movie movie, Canvas canvas) {
  69. if (movie.height() > getHeight() || movie.width() > getWidth()) {
  70. float offset = 0.25f;
  71. return (1f / Math.min(canvas.getHeight() / movie.height(), canvas.getWidth() / movie.width())) + offset;
  72. }
  73. return Math.min(canvas.getHeight() / movie.height(), canvas.getWidth() / movie.width());
  74. }
  75. @Override
  76. protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  77. if (mGifMovie == null) {
  78. setMeasuredDimension(widthMeasureSpec, heightMeasureSpec);
  79. } else {
  80. setMeasuredDimension(mMovieWidth, mMovieHeight);
  81. }
  82. }
  83. /**
  84. * Checks if current bitmaps exceed the maximum OpenGL texture size limit
  85. * @param canvas Canvas where the view will be drawn into.
  86. * @return boolean True means that the bitmap is too big for the canvas.
  87. */
  88. private boolean checkIfMaximumBitmapExceed(Canvas canvas) {
  89. return mBitmapWidth > canvas.getMaximumBitmapWidth() || mBitmapHeight > canvas.getMaximumBitmapHeight();
  90. }
  91. @Override
  92. /**
  93. * Keeps the size of the bitmap cached in member variables for faster access in {@link #onDraw(Canvas)},
  94. * but without keeping another reference to the {@link Bitmap}
  95. */
  96. public void setImageBitmap(Bitmap bm) {
  97. mBitmapWidth = bm.getWidth();
  98. mBitmapHeight = bm.getHeight();
  99. super.setImageBitmap(bm);
  100. }
  101. /**
  102. * sets the GIF image of the given storage path.
  103. *
  104. * @param storagePath the storage path of the GIF image
  105. */
  106. public void setGIFImageFromStoragePath(String storagePath) {
  107. try {
  108. InputStream gifInputStream = new FileInputStream(storagePath);
  109. setLayerType(View.LAYER_TYPE_SOFTWARE, null);
  110. setFocusable(true);
  111. mGifMovie = Movie.decodeStream(gifInputStream);
  112. mMovieWidth = mGifMovie.width();
  113. mMovieHeight = mGifMovie.height();
  114. mMovieDuration = mGifMovie.duration();
  115. } catch (Exception e) {
  116. Log_OC.e(TAG, "Failed to set GIF image");
  117. }
  118. }
  119. }