summaryrefslogtreecommitdiffstats
path: root/res/layout/filtershow_activity.xml
diff options
context:
space:
mode:
authornicolasroard <nicolasroard@google.com>2012-10-21 14:53:03 -0700
committernicolasroard <nicolasroard@google.com>2012-10-21 15:14:54 -0700
commit4d276f338bbdc53f8a3b4806265bc26c7fe0ea7c (patch)
tree02069cc2c99f6d8ffc80620793ba0d33cf0b9b47 /res/layout/filtershow_activity.xml
parent267c4c6a513671441031a9c21839995aecc4fc52 (diff)
downloadandroid_packages_apps_Gallery2-4d276f338bbdc53f8a3b4806265bc26c7fe0ea7c.tar.gz
android_packages_apps_Gallery2-4d276f338bbdc53f8a3b4806265bc26c7fe0ea7c.tar.bz2
android_packages_apps_Gallery2-4d276f338bbdc53f8a3b4806265bc26c7fe0ea7c.zip
Only translate the main panel if we have to.
bug:7386882 Change-Id: Ib670eb4e513f0bbebd3ecca052fe27180dcf5fdc
Diffstat (limited to 'res/layout/filtershow_activity.xml')
-rw-r--r--res/layout/filtershow_activity.xml91
1 files changed, 46 insertions, 45 deletions
diff --git a/res/layout/filtershow_activity.xml b/res/layout/filtershow_activity.xml
index e07cb1cc7..9ccb75532 100644
--- a/res/layout/filtershow_activity.xml
+++ b/res/layout/filtershow_activity.xml
@@ -18,6 +18,7 @@
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
+ android:id="@+id/mainView"
android:background="@color/background_screen" >
<LinearLayout
@@ -48,51 +49,6 @@
</LinearLayout>
<LinearLayout
- android:id="@+id/historyPanel"
- android:layout_width="200dip"
- android:layout_height="match_parent"
- android:layout_gravity="right"
- android:orientation="vertical"
- android:visibility="invisible" >
-
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@android:color/transparent"
- android:gravity="center"
- android:padding="2dip"
- android:text="@string/history"
- android:textColor="@android:color/white"
- android:textSize="24sp"
- android:textStyle="bold" />
-
- <ListView
- android:id="@+id/operationsList"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1" >
- </ListView>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
-
- <Button
- android:id="@+id/resetOperationsButton"
- style="@style/FilterShowHistoryButton"
- android:gravity="center"
- android:text="@string/reset" />
-
- <Button
- android:id="@+id/saveOperationsButton"
- style="@style/FilterShowHistoryButton"
- android:text="@string/save"
- android:visibility="gone" />
- </LinearLayout>
- </LinearLayout>
-
- <LinearLayout
android:id="@+id/mainPanel"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -458,4 +414,49 @@
</com.android.gallery3d.filtershow.CenteredLinearLayout>
</LinearLayout>
+ <LinearLayout
+ android:id="@+id/historyPanel"
+ android:layout_width="200dip"
+ android:layout_height="match_parent"
+ android:layout_gravity="right"
+ android:orientation="vertical"
+ android:visibility="invisible" >
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:background="@android:color/transparent"
+ android:gravity="center"
+ android:padding="2dip"
+ android:text="@string/history"
+ android:textColor="@android:color/white"
+ android:textSize="24sp"
+ android:textStyle="bold" />
+
+ <ListView
+ android:id="@+id/operationsList"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1" >
+ </ListView>
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal" >
+
+ <Button
+ android:id="@+id/resetOperationsButton"
+ style="@style/FilterShowHistoryButton"
+ android:gravity="center"
+ android:text="@string/reset" />
+
+ <Button
+ android:id="@+id/saveOperationsButton"
+ style="@style/FilterShowHistoryButton"
+ android:text="@string/save"
+ android:visibility="gone" />
+ </LinearLayout>
+ </LinearLayout>
+
</FrameLayout>