summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlikaid <likaid@codeaurora.org>2015-09-07 13:54:38 +0800
committerlikaid <likaid@codeaurora.org>2015-09-07 13:54:38 +0800
commit91731a582cb1c923e2fd92476479f88f195537a6 (patch)
tree051b871c4b44f0ccfcdde0f80a60ba762ffc8332
parent007b0d24e854630caa4fdf07899e3aa5f4ad301b (diff)
downloadandroid_packages_apps_Snap-91731a582cb1c923e2fd92476479f88f195537a6.tar.gz
android_packages_apps_Snap-91731a582cb1c923e2fd92476479f88f195537a6.tar.bz2
android_packages_apps_Snap-91731a582cb1c923e2fd92476479f88f195537a6.zip
SnapdragonCamera: Fix progress indicator overlapped by thumbnail icon
The video progress indicator was near to the screen left, when recording a video with landscape mode, it will be overlapped by thumbnail icon. Adjust the padding left size of the indicator to avoid this issue. CRs-Fixed: 901605 Change-Id: I0d915c4a449422352e4a316a6ae1f662049d8807
-rw-r--r--res/layout/video_module.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/layout/video_module.xml b/res/layout/video_module.xml
index 8fe42e178..fa01a6c85 100644
--- a/res/layout/video_module.xml
+++ b/res/layout/video_module.xml
@@ -62,7 +62,7 @@
<com.android.camera.PauseButton android:id="@+id/video_pause"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
- android:layout_marginLeft="50dp"
+ android:layout_marginLeft="70dp"
android:padding="23dp"
android:visibility="gone"
android:src="@drawable/btn_pause_recording"/>