summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorxianming wang <mingwax@codeaurora.org>2017-12-27 16:51:27 +0800
committerxianming wang <mingwax@codeaurora.org>2017-12-27 16:54:04 +0800
commita8838e65806dbf5357faf2febe872d65ea0aedb2 (patch)
tree969392928254bf7bc37ab2bf72dbbb420b114dbd /src
parent443f1ffe54ee3cb511676940272f45c15a1ae34e (diff)
downloadandroid_packages_apps_Snap-a8838e65806dbf5357faf2febe872d65ea0aedb2.tar.gz
android_packages_apps_Snap-a8838e65806dbf5357faf2febe872d65ea0aedb2.tar.bz2
android_packages_apps_Snap-a8838e65806dbf5357faf2febe872d65ea0aedb2.zip
SnapdragonCamera: Modify ManualExposure time from ms to ns
Modify the manualExposure time from ms to ns CRs-Fixed: 2164403 Change-Id: Ia16d6e8665392990fae4670e1c3af8f335ab9199
Diffstat (limited to 'src')
-rwxr-xr-xsrc/com/android/camera/SettingsActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/camera/SettingsActivity.java b/src/com/android/camera/SettingsActivity.java
index 52cd04ac3..79c9bfcc0 100755
--- a/src/com/android/camera/SettingsActivity.java
+++ b/src/com/android/camera/SettingsActivity.java
@@ -193,7 +193,7 @@ public class SettingsActivity extends PreferenceActivity {
alert.show();
} else if (manualExposureMode.equals(expTimePriority)) {
alert.setMessage("Enter exposure time in the range of " + exposureRange[0]
- + "ms to " + exposureRange[1] + "ms");
+ + "ns to " + exposureRange[1] + "ns");
linear.addView(ExpTimeInput);
linear.addView(ExpTimeText);
alert.setView(linear);
@@ -225,7 +225,7 @@ public class SettingsActivity extends PreferenceActivity {
final TextView ExpTimeRangeText = new TextView(this);
ISORangeText.setText("Enter ISO in the range of " + isoRange[0] + " to " + isoRange[1]);
ExpTimeRangeText.setText("Enter exposure time in the range of " + exposureRange[0]
- + "ms to " + exposureRange[1] + "ms");
+ + "ns to " + exposureRange[1] + "ns");
linear.addView(ISORangeText);
linear.addView(ISOinput);
linear.addView(ISOtext);