summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authornicolasroard <nicolasroard@google.com>2013-04-15 14:41:00 -0700
committernicolasroard <nicolasroard@google.com>2013-04-15 23:13:37 -0700
commit673f7408a381705db18e87243755e5ec19247290 (patch)
tree62baa14b71702bfd84540dc4759213b99a3214bf /res/layout
parentc646b996bd327995a4219ea4e103db620eb8d1f8 (diff)
downloadandroid_packages_apps_Snap-673f7408a381705db18e87243755e5ec19247290.tar.gz
android_packages_apps_Snap-673f7408a381705db18e87243755e5ec19247290.tar.bz2
android_packages_apps_Snap-673f7408a381705db18e87243755e5ec19247290.zip
New state panel
bug:8620913 bug:8503386 Change-Id: I35c95103e3b5097df93fa3f48e5562a479915f06
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/filtershow_state_panel_new.xml47
1 files changed, 47 insertions, 0 deletions
diff --git a/res/layout/filtershow_state_panel_new.xml b/res/layout/filtershow_state_panel_new.xml
new file mode 100644
index 000000000..771122192
--- /dev/null
+++ b/res/layout/filtershow_state_panel_new.xml
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <!--
+ <com.example.StatePanel.VerticalStatePanelTrack
+ android:id="@+id/listStates"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_margin="8dip"
+ android:background="@android:color/holo_red_dark" />
+ -->
+
+ <ScrollView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:scrollbars="none">
+
+ <com.android.gallery3d.filtershow.state.StatePanelTrack
+ android:id="@+id/listStates"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_margin="8dip"
+ android:animateLayoutChanges="true" />
+
+ </ScrollView>
+
+ <!--
+ <HorizontalScrollView
+ android:layout_width="match_parent"
+ android:layout_height="128dip"
+ android:scrollbars="none">
+
+ <com.example.StatePanel.StatePanelTrack
+ android:id="@+id/listStates"
+ android:layout_width="match_parent"
+ android:layout_height="128dip"
+ android:animateLayoutChanges="true" />
+
+ </HorizontalScrollView>
+ -->
+
+</LinearLayout>