diff options
author | John Spurlock <jspurlock@google.com> | 2014-11-14 14:35:01 -0500 |
---|---|---|
committer | John Spurlock <jspurlock@google.com> | 2014-11-14 14:38:03 -0500 |
commit | 96e7f0ed1a7fcfca229b6187c4f1cb9df5dac169 (patch) | |
tree | c1c9139ab6096879ec0a1d25572312bb30943e13 /packages/SystemUI/src/com/android/systemui/volume | |
parent | 27936ad3a677509fab1174c7b6655c894f018143 (diff) | |
download | frameworks_base-96e7f0ed1a7fcfca229b6187c4f1cb9df5dac169.zip frameworks_base-96e7f0ed1a7fcfca229b6187c4f1cb9df5dac169.tar.gz frameworks_base-96e7f0ed1a7fcfca229b6187c4f1cb9df5dac169.tar.bz2 |
Volume: Move "Muted by" string from sysui to frameworks.
To enable sharing with Settings.
Bug: 17461563
Change-Id: Icdb5f85eb4bcaa1ead7d77c1460e06ad3f0604d5
Diffstat (limited to 'packages/SystemUI/src/com/android/systemui/volume')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/volume/VolumePanel.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/volume/VolumePanel.java b/packages/SystemUI/src/com/android/systemui/volume/VolumePanel.java index 247cc51..f12053c 100644 --- a/packages/SystemUI/src/com/android/systemui/volume/VolumePanel.java +++ b/packages/SystemUI/src/com/android/systemui/volume/VolumePanel.java @@ -744,7 +744,7 @@ public class VolumePanel extends Handler implements DemoMode { } else { sc.seekbarView.setVisibility(View.GONE); sc.suppressorView.setVisibility(View.VISIBLE); - sc.suppressorView.setText(mContext.getString(com.android.systemui.R.string.muted_by, + sc.suppressorView.setText(mContext.getString(R.string.muted_by, getSuppressorCaption(suppressor))); sc.icon.setImageResource(sc.iconSuppressedRes); } |