diff options
author | Wu-cheng Li <wuchengli@google.com> | 2011-05-14 23:22:54 +0800 |
---|---|---|
committer | Wu-cheng Li <wuchengli@google.com> | 2011-05-26 11:10:49 +0800 |
commit | f63363f2885f4c16546358a612aa4cc2b98430a4 (patch) | |
tree | dde1c4892a16786b4e01349fb932b8f27db4ce6a /res/layout | |
parent | 63475660b8b67c503972419f35a2c7611c2a1a92 (diff) | |
download | LegacyCamera-f63363f2885f4c16546358a612aa4cc2b98430a4.zip LegacyCamera-f63363f2885f4c16546358a612aa4cc2b98430a4.tar.gz LegacyCamera-f63363f2885f4c16546358a612aa4cc2b98430a4.tar.bz2 |
Move gps indicator from the indicator bar to the corner.
bug:4391419
Change-Id: I5d4385edd51d3df21d4bcdd17a80dc778a832b94
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/preview_frame.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/res/layout/preview_frame.xml b/res/layout/preview_frame.xml index 904ef20..0cab5b3 100644 --- a/res/layout/preview_frame.xml +++ b/res/layout/preview_frame.xml @@ -35,6 +35,20 @@ android:layout_width="120dp" android:layout_height="120dp" android:layout_centerInParent="true"/> + <ImageView style="@style/OnScreenGpsIndicator" + android:id="@+id/onscreen_gps_indicator_no_signal" + android:src="@drawable/ic_viewfinder_gps_no_signal" + android:layout_alignParentLeft="true" + android:layout_alignParentBottom="true" + android:layout_margin="5dp" + android:visibility="invisible"/> + <ImageView style="@style/OnScreenGpsIndicator" + android:id="@+id/onscreen_gps_indicator_on" + android:src="@drawable/ic_viewfinder_gps_on" + android:layout_alignParentLeft="true" + android:layout_alignParentBottom="true" + android:layout_margin="5dp" + android:visibility="invisible"/> <ImageView android:id="@+id/review_image" android:layout_width="match_parent" android:layout_height="match_parent" |