diff options
author | repo sync <cywang@google.com> | 2011-07-17 16:24:44 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-07-17 16:24:44 -0700 |
commit | b4aa4791c329cadc4df8edf3def5655cf4105f56 (patch) | |
tree | 60e5046e1e754b01e29bf7e1ff45192cca90b5f6 /res/layout-w1024dp | |
parent | e1b7b87757cfef229162601154b0d62bbfb693a2 (diff) | |
parent | cead50ba3ce2df3bd9fcf06c6f54ea0c6980f0d7 (diff) | |
download | LegacyCamera-b4aa4791c329cadc4df8edf3def5655cf4105f56.zip LegacyCamera-b4aa4791c329cadc4df8edf3def5655cf4105f56.tar.gz LegacyCamera-b4aa4791c329cadc4df8edf3def5655cf4105f56.tar.bz2 |
Merge "Make all wheel icons rotatable."
Diffstat (limited to 'res/layout-w1024dp')
-rw-r--r-- | res/layout-w1024dp/camera_control.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/res/layout-w1024dp/camera_control.xml b/res/layout-w1024dp/camera_control.xml index d52847e..5c2b3b5 100644 --- a/res/layout-w1024dp/camera_control.xml +++ b/res/layout-w1024dp/camera_control.xml @@ -40,16 +40,18 @@ android:focusable="true" android:src="@drawable/btn_ic_camera_shutter" android:background="@drawable/btn_shutter" /> - <Button android:id="@+id/zoom_increment" + <com.android.camera.ui.RotateImageView android:id="@+id/zoom_increment" + android:clickable="true" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:background="@drawable/btn_zoom_in" + android:src="@drawable/btn_zoom_in" android:visibility="gone" /> - <Button android:id="@+id/zoom_decrement" + <com.android.camera.ui.RotateImageView android:id="@+id/zoom_decrement" + android:clickable="true" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:background="@drawable/btn_zoom_out" + android:src="@drawable/btn_zoom_out" android:visibility="gone" /> <com.android.camera.ui.CameraPicker android:id="@+id/camera_picker" |