CustomSeekBar: Dont format string for defaultValueText
Change-Id: I5419d231de344135fa222295b481e9603f7e0dd9
Signed-off-by: Pranav Vashi <neobuddy89@gmail.com>
diff --git a/src/com/bliss/support/preferences/CustomSeekBarPreference.java b/src/com/bliss/support/preferences/CustomSeekBarPreference.java
index 00ab7fd..9098897 100644
--- a/src/com/bliss/support/preferences/CustomSeekBarPreference.java
+++ b/src/com/bliss/support/preferences/CustomSeekBarPreference.java
@@ -179,11 +179,22 @@
protected void updateValueViews() {
if (mValueTextView != null) {
- mValueTextView.setText(getContext().getString(R.string.custom_seekbar_value,
- (!mTrackingTouch || mContinuousUpdates ? getTextValue(mValue) +
- (mDefaultValueExists && mValue == mDefaultValue ? " (" +
- getContext().getString(R.string.custom_seekbar_default_value) + ")" : "")
- : getTextValue(mTrackingValue))));
+ if (!mTrackingTouch || mContinuousUpdates) {
+ if (mDefaultValueTextExists && mDefaultValueExists && mValue == mDefaultValue) {
+ mValueTextView.setText(mDefaultValueText + " (" +
+ getContext().getString(R.string.custom_seekbar_default_value) + ")");
+ } else {
+ mValueTextView.setText(getContext().getString(R.string.custom_seekbar_value, getTextValue(mValue)) +
+ (mDefaultValueExists && mValue == mDefaultValue ? " (" +
+ getContext().getString(R.string.custom_seekbar_default_value) + ")" : ""));
+ }
+ } else {
+ if (mDefaultValueTextExists && mDefaultValueExists && mTrackingValue == mDefaultValue) {
+ mValueTextView.setText("[" + mDefaultValueText + "]");
+ } else {
+ mValueTextView.setText(getContext().getString(R.string.custom_seekbar_value, "[" + getTextValue(mTrackingValue) + "]"));
+ }
+ }
}
if (mResetImageView != null) {
if (!mDefaultValueExists || mValue == mDefaultValue || mTrackingTouch)