diff options
author | Wei-Ta Chen <weita@google.com> | 2011-08-17 11:16:57 -0700 |
---|---|---|
committer | Wei-Ta Chen <weita@google.com> | 2011-08-17 11:19:12 -0700 |
commit | 5af9472f1c260c1a3b54d2e1bd448c27b5e5968f (patch) | |
tree | d27e9894c44744a5607e3770b507ff63594abaa1 /res | |
parent | 95788ace8ad3630312f2f94544690c448c935f9e (diff) | |
download | LegacyCamera-5af9472f1c260c1a3b54d2e1bd448c27b5e5968f.zip LegacyCamera-5af9472f1c260c1a3b54d2e1bd448c27b5e5968f.tar.gz LegacyCamera-5af9472f1c260c1a3b54d2e1bd448c27b5e5968f.tar.bz2 |
Make the speed indicator visible.
The speed inidicator has to be drawn on top of the viewfinder/panorama
preview. Its visibility state should be same to the STOP button.
Change-Id: I5631dd77a98e96b2467f146f0b437e2043504fa1
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/pano_capture.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/res/layout/pano_capture.xml b/res/layout/pano_capture.xml index 39dd1ab..475e29e 100644 --- a/res/layout/pano_capture.xml +++ b/res/layout/pano_capture.xml @@ -24,15 +24,16 @@ <FrameLayout android:gravity="center" android:layout_width="match_parent" android:layout_height="match_parent"> - <com.android.camera.panorama.CaptureView - android:id="@+id/pano_capture_view" - android:layout_width="match_parent" - android:layout_height="match_parent" /> <com.android.camera.panorama.MosaicRendererSurfaceView android:id="@+id/pano_renderer" android:layout_gravity="center" android:layout_width="@dimen/pano_mosaic_surface_width" android:layout_height="@dimen/pano_mosaic_surface_height" /> + <com.android.camera.panorama.CaptureView + android:id="@+id/pano_capture_view" + android:visibility="gone" + android:layout_width="match_parent" + android:layout_height="match_parent" /> </FrameLayout> <ImageView style="@style/PanoViewHorizontalGrayBar" |