Update string associated with Connected, Always On or Insecure VPNs
Previously these strings were separated with a comma, but the new design is to separate them with a "/" and to not include always-on information if the vpn is also insecure. Comment thread on the strings doc: https://docs.google.com/document/d/1hjaYuGmvNzCKPOrmjixpmLLXBV8cbxgrZ3eN4KvC4E8/edit?resourcekey=0-zo7B2GVc9luQTut0o8THNA&hl=zh-TW&forcehl=1&disco=AAAAIF3eiQY screenshot: https://screenshot.googleplex.com/BmBroUZtmUPJz9s Test: atest -c SettingsUnitTests Bug: 176821216 Change-Id: Ib9c273de61c9722b0beb6fba127e7481e6c64705
This commit is contained in:
@@ -107,21 +107,20 @@ public abstract class ManageablePreference extends GearPreference {
|
||||
final Resources res = getContext().getResources();
|
||||
final String[] states = res.getStringArray(R.array.vpn_states);
|
||||
String summary = (mState == STATE_NONE ? "" : states[mState]);
|
||||
if (mIsAlwaysOn) {
|
||||
final String alwaysOnString = res.getString(R.string.vpn_always_on_summary_active);
|
||||
summary = TextUtils.isEmpty(summary) ? alwaysOnString : res.getString(
|
||||
R.string.join_two_unrelated_items, summary, alwaysOnString);
|
||||
}
|
||||
if (mIsInsecureVpn) {
|
||||
final String insecureString = res.getString(R.string.vpn_insecure_summary);
|
||||
summary = TextUtils.isEmpty(summary) ? insecureString : res.getString(
|
||||
R.string.join_two_unrelated_items, summary, insecureString);
|
||||
summary = TextUtils.isEmpty(summary) ? insecureString : summary + " / "
|
||||
+ insecureString;
|
||||
|
||||
SpannableString summarySpan = new SpannableString(summary);
|
||||
final int colorError = Utils.getColorErrorDefaultColor(getContext());
|
||||
summarySpan.setSpan(new ForegroundColorSpan(colorError), 0, summary.length(),
|
||||
SPAN_EXCLUSIVE_INCLUSIVE);
|
||||
setSummary(summarySpan);
|
||||
} else if (mIsAlwaysOn) {
|
||||
final String alwaysOnString = res.getString(R.string.vpn_always_on_summary_active);
|
||||
summary = TextUtils.isEmpty(summary) ? alwaysOnString : summary + " / "
|
||||
+ alwaysOnString;
|
||||
} else {
|
||||
setSummary(summary);
|
||||
}
|
||||
|
Reference in New Issue
Block a user