summaryrefslogtreecommitdiffstats
path: root/src_pd/com
diff options
context:
space:
mode:
authorRuben Brunk <rubenbrunk@google.com>2013-06-17 14:32:37 -0700
committerRuben Brunk <rubenbrunk@google.com>2013-06-17 14:41:32 -0700
commit3126f4f5c0c241f7fb895cc8222954a7f7cbfdfe (patch)
tree7d1aabc480119dd8664bdb26a8699d4241eca1c6 /src_pd/com
parentd67ffd653bada5d4dcdca1f7a3c3a7aab1b51360 (diff)
downloadandroid_packages_apps_Snap-3126f4f5c0c241f7fb895cc8222954a7f7cbfdfe.tar.gz
android_packages_apps_Snap-3126f4f5c0c241f7fb895cc8222954a7f7cbfdfe.tar.bz2
android_packages_apps_Snap-3126f4f5c0c241f7fb895cc8222954a7f7cbfdfe.zip
Added serialization IDs for frames, adds frames to analytics.
Bug: 9467671 Change-Id: I6f21e7bc9ca7255a290ba7cd1a94e9b07e7b06cb
Diffstat (limited to 'src_pd/com')
-rw-r--r--src_pd/com/android/gallery3d/filtershow/filters/FiltersManager.java80
1 files changed, 63 insertions, 17 deletions
diff --git a/src_pd/com/android/gallery3d/filtershow/filters/FiltersManager.java b/src_pd/com/android/gallery3d/filtershow/filters/FiltersManager.java
index 97588db1c..c5a6435aa 100644
--- a/src_pd/com/android/gallery3d/filtershow/filters/FiltersManager.java
+++ b/src_pd/com/android/gallery3d/filtershow/filters/FiltersManager.java
@@ -50,25 +50,71 @@ public class FiltersManager extends BaseFiltersManager {
@Override
public void addBorders(Context context, Vector<FilterRepresentation> representations) {
+
+ // Do not localize
+ String[] serializationNames = {
+ "FRAME_4X5",
+ "FRAME_BRUSH",
+ "FRAME_GRUNGE",
+ "FRAME_SUMI_E",
+ "FRAME_TAPE",
+ "FRAME_BLACK",
+ "FRAME_BLACK_ROUNDED",
+ "FRAME_WHITE",
+ "FRAME_WHITE_ROUNDED",
+ "FRAME_CREAM",
+ "FRAME_CREAM_ROUNDED"
+ };
+
+ int i = 0;
// Regular borders
- representations.add(new FilterImageBorderRepresentation(R.drawable.filtershow_border_4x5));
- representations.add(
- new FilterImageBorderRepresentation(R.drawable.filtershow_border_brush));
- representations.add(
- new FilterImageBorderRepresentation(R.drawable.filtershow_border_grunge));
- representations.add(
- new FilterImageBorderRepresentation(R.drawable.filtershow_border_sumi_e));
- representations.add(new FilterImageBorderRepresentation(R.drawable.filtershow_border_tape));
- representations.add(new FilterColorBorderRepresentation(Color.BLACK, mImageBorderSize, 0));
- representations.add(new FilterColorBorderRepresentation(Color.BLACK, mImageBorderSize,
- mImageBorderSize));
- representations.add(new FilterColorBorderRepresentation(Color.WHITE, mImageBorderSize, 0));
- representations.add(new FilterColorBorderRepresentation(Color.WHITE, mImageBorderSize,
- mImageBorderSize));
+ FilterRepresentation rep = new FilterImageBorderRepresentation(R.drawable.filtershow_border_4x5);
+ rep.setSerializationName(serializationNames[i++]);
+ representations.add(rep);
+
+ rep = new FilterImageBorderRepresentation(R.drawable.filtershow_border_brush);
+ rep.setSerializationName(serializationNames[i++]);
+ representations.add(rep);
+
+ rep = new FilterImageBorderRepresentation(R.drawable.filtershow_border_grunge);
+ rep.setSerializationName(serializationNames[i++]);
+ representations.add(rep);
+
+ rep = new FilterImageBorderRepresentation(R.drawable.filtershow_border_sumi_e);
+ rep.setSerializationName(serializationNames[i++]);
+ representations.add(rep);
+
+ rep = new FilterImageBorderRepresentation(R.drawable.filtershow_border_tape);
+ rep.setSerializationName(serializationNames[i++]);
+ representations.add(rep);
+
+ rep = new FilterColorBorderRepresentation(Color.BLACK, mImageBorderSize, 0);
+ rep.setSerializationName(serializationNames[i++]);
+ representations.add(rep);
+
+ rep = new FilterColorBorderRepresentation(Color.BLACK, mImageBorderSize,
+ mImageBorderSize);
+ rep.setSerializationName(serializationNames[i++]);
+ representations.add(rep);
+
+ rep = new FilterColorBorderRepresentation(Color.WHITE, mImageBorderSize, 0);
+ rep.setSerializationName(serializationNames[i++]);
+ representations.add(rep);
+
+ rep = new FilterColorBorderRepresentation(Color.WHITE, mImageBorderSize,
+ mImageBorderSize);
+ rep.setSerializationName(serializationNames[i++]);
+ representations.add(rep);
+
int creamColor = Color.argb(255, 237, 237, 227);
- representations.add(new FilterColorBorderRepresentation(creamColor, mImageBorderSize, 0));
- representations.add(new FilterColorBorderRepresentation(creamColor, mImageBorderSize,
- mImageBorderSize));
+ rep = new FilterColorBorderRepresentation(creamColor, mImageBorderSize, 0);
+ rep.setSerializationName(serializationNames[i++]);
+ representations.add(rep);
+
+ rep = new FilterColorBorderRepresentation(creamColor, mImageBorderSize,
+ mImageBorderSize);
+ rep.setSerializationName(serializationNames[i++]);
+ representations.add(rep);
}
public static FiltersManager getHighresManager() {