summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBobby Georgescu <georgescu@google.com>2012-10-16 22:41:58 -0700
committerBobby Georgescu <georgescu@google.com>2012-10-16 22:41:58 -0700
commit856ab5b77b39e4acf454a957f08eba7cc86ae0fc (patch)
treefa5b3286ada69d8f9a078112b94f4fb82332fee1
parent74d5dfd662b92c9ce1aee225291b9d1775cfb49e (diff)
downloadandroid_packages_apps_Gallery2-856ab5b77b39e4acf454a957f08eba7cc86ae0fc.tar.gz
android_packages_apps_Gallery2-856ab5b77b39e4acf454a957f08eba7cc86ae0fc.tar.bz2
android_packages_apps_Gallery2-856ab5b77b39e4acf454a957f08eba7cc86ae0fc.zip
Update empty placeholder asset
Bug: 7362100 Change-Id: I521c1c481a00959bb50d17fee3be6981be84a269
-rw-r--r--res/drawable-hdpi/placeholder_empty.pngbin0 -> 2489 bytes
-rw-r--r--res/drawable-mdpi/placeholder_empty.pngbin0 -> 2176 bytes
-rw-r--r--res/drawable-xhdpi/placeholder_empty.pngbin0 -> 2942 bytes
-rw-r--r--src/com/android/gallery3d/data/EmptyAlbumImage.java2
4 files changed, 1 insertions, 1 deletions
diff --git a/res/drawable-hdpi/placeholder_empty.png b/res/drawable-hdpi/placeholder_empty.png
new file mode 100644
index 000000000..5f6020387
--- /dev/null
+++ b/res/drawable-hdpi/placeholder_empty.png
Binary files differ
diff --git a/res/drawable-mdpi/placeholder_empty.png b/res/drawable-mdpi/placeholder_empty.png
new file mode 100644
index 000000000..3d6118dd7
--- /dev/null
+++ b/res/drawable-mdpi/placeholder_empty.png
Binary files differ
diff --git a/res/drawable-xhdpi/placeholder_empty.png b/res/drawable-xhdpi/placeholder_empty.png
new file mode 100644
index 000000000..83e8e8155
--- /dev/null
+++ b/res/drawable-xhdpi/placeholder_empty.png
Binary files differ
diff --git a/src/com/android/gallery3d/data/EmptyAlbumImage.java b/src/com/android/gallery3d/data/EmptyAlbumImage.java
index dbbc01a33..6f8c37c6b 100644
--- a/src/com/android/gallery3d/data/EmptyAlbumImage.java
+++ b/src/com/android/gallery3d/data/EmptyAlbumImage.java
@@ -24,7 +24,7 @@ public class EmptyAlbumImage extends ActionImage {
private static final String TAG = "EmptyAlbumImage";
public EmptyAlbumImage(Path path, GalleryApp application) {
- super(path, application, R.drawable.ic_menu_revert_holo_dark);
+ super(path, application, R.drawable.placeholder_empty);
}
@Override