sunshinelwj
sunshinelwj
When loading an image, Google suggests us to resize the image before decoding them, so as to save memory resource. https://developer.android.com/topic/performance/graphics/load-bitmap.html However, in the code below, images are decoded directly...
When loading images, Google suggests us to cache the bitmaps that can be reused, so as to keep a fluid and fast-loading UI. https://developer.android.com/topic/performance/graphics/cache-bitmap.html However, in the code below, bitmap...
Dear developers, I found that when I create a passbook, the speed of "opening passbook" is slow.   The reason is that the image I imported is large, which...
When loading an image, Google suggests us to resize the image before decoding them, so as to save memory resource https://developer.android.com/topic/performance/graphics/load-bitmap.html I noticed that in the following code of Document...
When loading an image, Google suggests us to resize the image before decoding them, so as to save memory resource. https://developer.android.com/topic/performance/graphics/load-bitmap.html I noticed that in the following code of KISS,...
## 🏗 Enhancement Proposal I noticed that in the following code in PhotoView, images are displayed directly without resizing: com.github.chrisbanes.photoview.PhotoView.java setImageURI() (line 122) https://github.com/Baseflow/PhotoView/blob/master/photoview/src/main/java/com/github/chrisbanes/photoview/PhotoView.java#L121 For the images to be displayed,...