summaryrefslogtreecommitdiffstats
path: root/res/layout/photo_module.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/photo_module.xml')
-rw-r--r--res/layout/photo_module.xml12
1 files changed, 9 insertions, 3 deletions
diff --git a/res/layout/photo_module.xml b/res/layout/photo_module.xml
index f5525b832..b0bca3c97 100644
--- a/res/layout/photo_module.xml
+++ b/res/layout/photo_module.xml
@@ -24,10 +24,16 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center">
- <TextureView
- android:id="@+id/preview_content"
+ <!-- Wrap a frame layout around texture view so that when scaled, texture
+ view will not draw outside its unscaled bounds -->
+ <FrameLayout
android:layout_width="match_parent"
- android:layout_height="match_parent" />
+ android:layout_height="match_parent">
+ <TextureView
+ android:id="@+id/preview_content"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" />
+ </FrameLayout>
<View
android:id="@+id/flash_overlay"
android:layout_width="match_parent"