diff options
author | Angus Kong <shkong@google.com> | 2011-08-22 12:27:21 +0800 |
---|---|---|
committer | Angus Kong <shkong@google.com> | 2011-08-25 11:37:03 +0800 |
commit | a907c122ccec649c6cedf3a45b1c426a5fca932e (patch) | |
tree | a9ee81ace05282d5e5661404085becd3e3393190 /res/layout-w1024dp | |
parent | 50b3c890986aadb3780b4da8c0b8dbb0f1422eba (diff) | |
download | LegacyCamera-a907c122ccec649c6cedf3a45b1c426a5fca932e.zip LegacyCamera-a907c122ccec649c6cedf3a45b1c426a5fca932e.tar.gz LegacyCamera-a907c122ccec649c6cedf3a45b1c426a5fca932e.tar.bz2 |
Add thumbnail and share popup for the last result.
bug:5141665
Change-Id: Idc44d33d09c8d4a30fdcef66de2d6754daf1ea82
Diffstat (limited to 'res/layout-w1024dp')
-rw-r--r-- | res/layout-w1024dp/preview_frame_video.xml | 1 | ||||
-rw-r--r-- | res/layout-w1024dp/review_control.xml | 3 | ||||
-rw-r--r-- | res/layout-w1024dp/review_thumbnail.xml | 29 |
3 files changed, 4 insertions, 29 deletions
diff --git a/res/layout-w1024dp/preview_frame_video.xml b/res/layout-w1024dp/preview_frame_video.xml index c860642..039a76d 100644 --- a/res/layout-w1024dp/preview_frame_video.xml +++ b/res/layout-w1024dp/preview_frame_video.xml @@ -50,6 +50,7 @@ android:visibility="gone"> <ImageView style="@style/ReviewControlIcon" android:id="@+id/btn_play" + android:onClick="onPlayButtonClicked" android:paddingTop="10dp" android:paddingBottom="10dp" android:src="@drawable/btn_ic_review_play"/> diff --git a/res/layout-w1024dp/review_control.xml b/res/layout-w1024dp/review_control.xml index 63415d3..659670f 100644 --- a/res/layout-w1024dp/review_control.xml +++ b/res/layout-w1024dp/review_control.xml @@ -28,6 +28,7 @@ android:visibility="gone"> <Button android:id="@+id/btn_done" style="@style/ReviewControlIcon" + android:onClick="onDoneButtonClicked" android:drawableLeft="@drawable/ic_menu_done_holo_light" android:text="@string/review_ok"/> <ImageView @@ -41,6 +42,7 @@ style="@style/ReviewControlIcon" android:scaleType="center" android:clickable="true" + android:onClick="onRetakeButtonClicked" android:drawableLeft="@drawable/ic_switch_camera_holo_dark"/> <ImageView android:layout_width="wrap_content" @@ -49,6 +51,7 @@ </LinearLayout> <LinearLayout style="@style/ReviewControlGroup"> <Button android:id="@+id/btn_cancel" + android:onClick="onCancelButtonClicked" style="@style/ReviewControlIcon" android:drawableLeft="@drawable/ic_menu_cancel_holo_light" android:text="@string/review_cancel"/> diff --git a/res/layout-w1024dp/review_thumbnail.xml b/res/layout-w1024dp/review_thumbnail.xml deleted file mode 100644 index d206997..0000000 --- a/res/layout-w1024dp/review_thumbnail.xml +++ /dev/null @@ -1,29 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2010 The Android Open Source Project - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> - -<com.android.camera.ui.RotateImageView xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/thumbnail" - android:layout_width="86dp" - android:layout_height="86dp" - android:layout_alignParentTop="true" - android:layout_alignParentRight="true" - android:layout_marginTop="@dimen/thumbnail_margin_top" - android:layout_marginRight="@dimen/thumbnail_margin_right" - android:orientation="horizontal" - android:clickable="true" - android:focusable="false" - android:background="@drawable/border_last_picture"> -</com.android.camera.ui.RotateImageView>
\ No newline at end of file |