summaryrefslogtreecommitdiffstats
path: root/res/layout/photopage_bottom_controls.xml
diff options
context:
space:
mode:
authorBobby Georgescu <georgescu@google.com>2012-09-30 12:57:45 -0700
committerBobby Georgescu <georgescu@google.com>2012-09-30 13:00:17 -0700
commit09ff3c66f7760febc2c1ba02e9d6171b3f68d97e (patch)
tree4fde4edcfc3aea67a3b51a398ae738c3e70c58c3 /res/layout/photopage_bottom_controls.xml
parenta121a12946dd753aa49191454ebfac0d435c1d4e (diff)
downloadandroid_packages_apps_Snap-09ff3c66f7760febc2c1ba02e9d6171b3f68d97e.tar.gz
android_packages_apps_Snap-09ff3c66f7760febc2c1ba02e9d6171b3f68d97e.tar.bz2
android_packages_apps_Snap-09ff3c66f7760febc2c1ba02e9d6171b3f68d97e.zip
Update FX/pano button appearance, placement, animation
Bug: 7213162 Bug: 7233446 Change-Id: Ief62e3f17ee08999a23656217dcf39bb91421d1e
Diffstat (limited to 'res/layout/photopage_bottom_controls.xml')
-rw-r--r--res/layout/photopage_bottom_controls.xml21
1 files changed, 17 insertions, 4 deletions
diff --git a/res/layout/photopage_bottom_controls.xml b/res/layout/photopage_bottom_controls.xml
index a8fca2d72..5b80cf2da 100644
--- a/res/layout/photopage_bottom_controls.xml
+++ b/res/layout/photopage_bottom_controls.xml
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/photopage_bottom_controls"
+ android:padding="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
@@ -9,14 +10,26 @@
android:visibility="gone">
<ImageButton
android:id="@+id/photopage_bottom_control_edit"
- android:src="@drawable/photoeditor_artistic"
+ android:src="@drawable/ic_photoeditor_effects"
+ android:background="@drawable/photopage_bottom_button_background"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:paddingTop="5dp"
+ android:paddingBottom="5dp"
+ android:paddingLeft="15dp"
+ android:paddingRight="15dp"
android:visibility="gone"/>
<ImageButton
android:id="@+id/photopage_bottom_control_panorama"
- android:src="@android:drawable/ic_dialog_map"
+ android:src="@drawable/ic_menu_photosphere"
+ android:background="@drawable/photopage_bottom_button_background"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:layout_alignParentRight="true"
+ android:paddingTop="5dp"
+ android:paddingBottom="5dp"
+ android:paddingLeft="15dp"
+ android:paddingRight="15dp"
android:visibility="gone"/>
-</LinearLayout>
+</RelativeLayout>