summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/data/ComboAlbum.java
diff options
context:
space:
mode:
authorBobby Georgescu <georgescu@google.com>2012-10-01 17:49:30 -0700
committerBobby Georgescu <georgescu@google.com>2012-10-01 18:15:52 -0700
commitba534e23c5a6e065d3d99c6e0b8cf49a62ffa034 (patch)
treeefb480b52e31e407c486f7f4888aead83ded8674 /src/com/android/gallery3d/data/ComboAlbum.java
parentdb61fdf195283c18b9dfbc523fced2358b437008 (diff)
downloadandroid_packages_apps_Snap-ba534e23c5a6e065d3d99c6e0b8cf49a62ffa034.tar.gz
android_packages_apps_Snap-ba534e23c5a6e065d3d99c6e0b8cf49a62ffa034.tar.bz2
android_packages_apps_Snap-ba534e23c5a6e065d3d99c6e0b8cf49a62ffa034.zip
Improve display of ActionBar album mode switcher
Bug: 7265942 Bug: 7266862 - Ellipsize the title of the album when appropriate - Show correctly title when swiping from camera to gallery - Hide the delete icon in the overflow menu to match the latest UX mocks, making more room for title Change-Id: Ief77f65c972e75086c5dbf4229c9462cbcc17940
Diffstat (limited to 'src/com/android/gallery3d/data/ComboAlbum.java')
-rw-r--r--src/com/android/gallery3d/data/ComboAlbum.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/com/android/gallery3d/data/ComboAlbum.java b/src/com/android/gallery3d/data/ComboAlbum.java
index e100dc3e6..cadd9f8af 100644
--- a/src/com/android/gallery3d/data/ComboAlbum.java
+++ b/src/com/android/gallery3d/data/ComboAlbum.java
@@ -27,7 +27,7 @@ public class ComboAlbum extends MediaSet implements ContentListener {
@SuppressWarnings("unused")
private static final String TAG = "ComboAlbum";
private final MediaSet[] mSets;
- private final String mName;
+ private String mName;
public ComboAlbum(Path path, MediaSet[] mediaSets, String name) {
super(path, nextVersionNumber());
@@ -76,6 +76,10 @@ public class ComboAlbum extends MediaSet implements ContentListener {
return mName;
}
+ public void useNameOfChild(int i) {
+ if (i < mSets.length) mName = mSets[i].getName();
+ }
+
@Override
public long reload() {
boolean changed = false;