summaryrefslogtreecommitdiffstats
path: root/src/com/android/camera/CaptureUI.java
diff options
context:
space:
mode:
authorzhuw <zhuw@codeaurora.org>2018-12-27 10:50:32 +0800
committerGerrit - the friendly Code Review server <code-review@localhost>2018-12-26 18:59:26 -0800
commit4aa5f865e9c6e205e85e3326821e50fd7375c027 (patch)
treefab135263f1e31ad8b8e7077c01cb4e7ac8b8837 /src/com/android/camera/CaptureUI.java
parentc48104739d7221ff3c617f34f2d6c63be5888288 (diff)
downloadandroid_packages_apps_Snap-4aa5f865e9c6e205e85e3326821e50fd7375c027.tar.gz
android_packages_apps_Snap-4aa5f865e9c6e205e85e3326821e50fd7375c027.tar.bz2
android_packages_apps_Snap-4aa5f865e9c6e205e85e3326821e50fd7375c027.zip
fix recording time dismiss issue
init textview with text "00:00" instead of "" Change-Id: I97ba2b9c39a4b30c00b67653c2cfa02dbfbf5c33 CRs-Fixed:2371276
Diffstat (limited to 'src/com/android/camera/CaptureUI.java')
-rwxr-xr-xsrc/com/android/camera/CaptureUI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/camera/CaptureUI.java b/src/com/android/camera/CaptureUI.java
index c5875327d..b4fe014bf 100755
--- a/src/com/android/camera/CaptureUI.java
+++ b/src/com/android/camera/CaptureUI.java
@@ -901,7 +901,7 @@ public class CaptureUI implements FocusOverlayManager.FocusUI,
mFlashButton.init(true);
}
mVideoButton.setImageResource(R.drawable.video_stop);
- mRecordingTimeView.setText("");
+ mRecordingTimeView.setText("00:00");
mRecordingTimeRect.setVisibility(View.VISIBLE);
mMuteButton.setVisibility(View.VISIBLE);
setMuteButtonResource(!mModule.isAudioMute());