diff options
author | Owen Lin <owenlin@google.com> | 2009-07-30 10:23:30 +0800 |
---|---|---|
committer | Owen Lin <owenlin@google.com> | 2009-07-31 15:21:12 +0800 |
commit | 71ea3a35151560d603c20ca19e6318924870a730 (patch) | |
tree | 31f5d2f4b863eba91183f1b650e1af38a5b8735a /res/layout | |
parent | 048e9db023de286e9576b438d4c616a53773abc8 (diff) | |
download | LegacyCamera-71ea3a35151560d603c20ca19e6318924870a730.zip LegacyCamera-71ea3a35151560d603c20ca19e6318924870a730.tar.gz LegacyCamera-71ea3a35151560d603c20ca19e6318924870a730.tar.bz2 |
Fix bug 2022547. Show zoom buttons only when click on photo area.
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/review_image.xml | 2 | ||||
-rw-r--r-- | res/layout/viewimage.xml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/res/layout/review_image.xml b/res/layout/review_image.xml index e59ea58..5fc033f 100644 --- a/res/layout/review_image.xml +++ b/res/layout/review_image.xml @@ -57,6 +57,7 @@ </AbsoluteLayout> <ImageView android:id="@+id/prev_image" android:clickable="true" + android:focusable="true" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentLeft="true" @@ -66,6 +67,7 @@ /> <ImageView android:id="@+id/next_image" android:clickable="true" + android:focusable="true" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" diff --git a/res/layout/viewimage.xml b/res/layout/viewimage.xml index 30b56fd..483a3fa 100644 --- a/res/layout/viewimage.xml +++ b/res/layout/viewimage.xml @@ -44,6 +44,7 @@ </AbsoluteLayout> <ImageView android:id="@+id/prev_image" android:clickable="true" + android:focusable="true" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentLeft="true" @@ -54,6 +55,7 @@ <ImageView android:id="@+id/next_image" android:clickable="true" + android:focusable="true" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true" |