diff options
author | Scott Jackson <daneren2005@gmail.com> | 2015-03-08 17:28:19 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2015-03-08 17:28:19 -0700 |
commit | b2ea0d0f28a9c583234fc1d83115b514db7c049f (patch) | |
tree | eb3dc8707ac5fa55a9f96f26d8d39607a9432948 /res/layout-large-land | |
parent | b71b8726238c30a16dfbdd525cc68dfc52ceb36e (diff) | |
download | dsub-b2ea0d0f28a9c583234fc1d83115b514db7c049f.tar.gz dsub-b2ea0d0f28a9c583234fc1d83115b514db7c049f.tar.bz2 dsub-b2ea0d0f28a9c583234fc1d83115b514db7c049f.zip |
Get around the random recycled bitmap errors from calling onDraw after a bitmap had been recycled to make room for a new one. This isn't the ideal fix since it will show a blank image, but it is better than just crashing.
Diffstat (limited to 'res/layout-large-land')
-rw-r--r-- | res/layout-large-land/download.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/res/layout-large-land/download.xml b/res/layout-large-land/download.xml index 18b560bc..139685e0 100644 --- a/res/layout-large-land/download.xml +++ b/res/layout-large-land/download.xml @@ -15,7 +15,7 @@ android:layout_height="0dip"
android:layout_weight="1">
- <ImageView
+ <github.daneren2005.dsub.view.RecyclingImageView
android:id="@+id/download_album_art_image"
android:src="@drawable/unknown_album_large"
android:layout_width="0dp"
|