From 13d6bcf08e004877bd268a88165d2bc265764366 Mon Sep 17 00:00:00 2001 From: "xuke.yin" Date: Fri, 22 May 2015 17:08:02 +0800 Subject: Fix the hint text of rename folder can't change with system language Reproduce 1)In workspace make a folder, click the folder check the hint text of the rename edittext. 2)Change the system language, then click the folder for rename, in the second time click the folder the hint text will change to the last language. Change-Id: I97d14a15bfa748be900bef193950b85b890efe40 --- src/com/android/launcher3/Folder.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/com/android/launcher3/Folder.java b/src/com/android/launcher3/Folder.java index 76e313470..318214965 100644 --- a/src/com/android/launcher3/Folder.java +++ b/src/com/android/launcher3/Folder.java @@ -185,9 +185,7 @@ public class Folder extends LinearLayout implements DragSource, View.OnClickList if (sDefaultFolderName == null) { sDefaultFolderName = res.getString(R.string.folder_name); } - if (sHintText == null) { - sHintText = res.getString(R.string.folder_hint_text); - } + sHintText = res.getString(R.string.folder_hint_text); mLauncher = (Launcher) context; // We need this view to be focusable in touch mode so that when text editing of the folder // name is complete, we have something to focus on, thus hiding the cursor and giving -- cgit v1.2.3