From f2d824fd560fb32fb789d15b670e9258a177da71 Mon Sep 17 00:00:00 2001 From: Johan Redestig Date: Fri, 23 Oct 2015 18:23:40 +0200 Subject: [PATCH] SystemUI: Reload the EndNowButton label Reload the EndNowButton label when configuration changes. Change-Id: I042d31f0bb011996aa8219c3c412e7b71987244c --- packages/SystemUI/src/com/android/systemui/volume/ZenFooter.java | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/SystemUI/src/com/android/systemui/volume/ZenFooter.java b/packages/SystemUI/src/com/android/systemui/volume/ZenFooter.java index af7ee0856cb67..9f7e8ecf1cb3c 100644 --- a/packages/SystemUI/src/com/android/systemui/volume/ZenFooter.java +++ b/packages/SystemUI/src/com/android/systemui/volume/ZenFooter.java @@ -140,6 +140,7 @@ public class ZenFooter extends LinearLayout { public void onConfigurationChanged() { mSpTexts.update(); + Util.setText(mEndNowButton, mContext.getString(R.string.volume_zen_end_now)); } }