summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorOwen Lin <owenlin@google.com>2009-12-04 04:33:21 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2009-12-04 04:33:21 -0800
commite84bec36fc79750e85cc845550610eac24f0c5f1 (patch)
treec0560417397ad73d90b1d38cee1fe96b7407ec07 /res
parent11aeb1a98f29ff3525fc8179ce519e4924b754c8 (diff)
parent0588c8b15c304477c31978016d536abb291e5274 (diff)
downloadLegacyCamera-e84bec36fc79750e85cc845550610eac24f0c5f1.zip
LegacyCamera-e84bec36fc79750e85cc845550610eac24f0c5f1.tar.gz
LegacyCamera-e84bec36fc79750e85cc845550610eac24f0c5f1.tar.bz2
am 0588c8b1: am ff58fb69: Use icon to indicate the orientation of the taken photos.
Merge commit '0588c8b15c304477c31978016d536abb291e5274' * commit '0588c8b15c304477c31978016d536abb291e5274': Use icon to indicate the orientation of the taken photos.
Diffstat (limited to 'res')
-rw-r--r--res/drawable-hdpi/btn_ic_mode_switch_camera.pngbin1139 -> 1014 bytes
-rw-r--r--res/drawable-hdpi/btn_ic_mode_switch_video.pngbin836 -> 752 bytes
-rw-r--r--[-rwxr-xr-x]res/drawable-mdpi/btn_ic_mode_switch_camera.pngbin762 -> 694 bytes
-rw-r--r--[-rwxr-xr-x]res/drawable-mdpi/btn_ic_mode_switch_video.pngbin542 -> 544 bytes
-rw-r--r--res/layout/camera_control.xml11
5 files changed, 8 insertions, 3 deletions
diff --git a/res/drawable-hdpi/btn_ic_mode_switch_camera.png b/res/drawable-hdpi/btn_ic_mode_switch_camera.png
index 3f3e534..ca53bb7 100644
--- a/res/drawable-hdpi/btn_ic_mode_switch_camera.png
+++ b/res/drawable-hdpi/btn_ic_mode_switch_camera.png
Binary files differ
diff --git a/res/drawable-hdpi/btn_ic_mode_switch_video.png b/res/drawable-hdpi/btn_ic_mode_switch_video.png
index 0fc8302..09a2036 100644
--- a/res/drawable-hdpi/btn_ic_mode_switch_video.png
+++ b/res/drawable-hdpi/btn_ic_mode_switch_video.png
Binary files differ
diff --git a/res/drawable-mdpi/btn_ic_mode_switch_camera.png b/res/drawable-mdpi/btn_ic_mode_switch_camera.png
index 9dbe57b..b8b0df7 100755..100644
--- a/res/drawable-mdpi/btn_ic_mode_switch_camera.png
+++ b/res/drawable-mdpi/btn_ic_mode_switch_camera.png
Binary files differ
diff --git a/res/drawable-mdpi/btn_ic_mode_switch_video.png b/res/drawable-mdpi/btn_ic_mode_switch_video.png
index 397e9ad..f31e9ff 100755..100644
--- a/res/drawable-mdpi/btn_ic_mode_switch_video.png
+++ b/res/drawable-mdpi/btn_ic_mode_switch_video.png
Binary files differ
diff --git a/res/layout/camera_control.xml b/res/layout/camera_control.xml
index 8f7f6c8..6b84ad2 100644
--- a/res/layout/camera_control.xml
+++ b/res/layout/camera_control.xml
@@ -23,7 +23,8 @@
android:layout_marginBottom="10dp"
android:layout_alignParentRight="true">
- <ImageView android:id="@+id/review_thumbnail"
+ <com.android.camera.RotateImageView
+ android:id="@+id/review_thumbnail"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_height="52dp"
@@ -34,10 +35,12 @@
<LinearLayout android:id="@+id/camera_switch_set"
android:orientation="vertical"
+ android:gravity="center"
android:layout_centerInParent="true"
android:layout_height="wrap_content"
android:layout_width="wrap_content">
- <ImageView android:layout_height="wrap_content"
+ <com.android.camera.RotateImageView android:id="@+id/video_switch_icon"
+ android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/btn_ic_mode_switch_video"/>
<com.android.camera.Switcher android:id="@+id/camera_switch"
@@ -45,7 +48,9 @@
android:layout_height="70dp"
android:src="@drawable/btn_mode_switch_knob"
android:background="@drawable/btn_mode_switch_bg" />
- <ImageView android:layout_height="wrap_content"
+ <com.android.camera.RotateImageView
+ android:id="@+id/camera_switch_icon"
+ android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginBottom="3dp"
android:src="@drawable/btn_ic_mode_switch_camera"/>