Fix bad string reference
The source string was removed but there are still references to it. Updating the references as well in this CL. Test: mma with ANDROID_AAPT_IGNORE on locale files Bug: 64763091 Change-Id: I43ef63207e884cbaa92ff3853b0f1fd690cf05f8
This commit is contained in:
@@ -21,7 +21,7 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:icon="@drawable/ic_lock"
|
android:icon="@drawable/ic_lock"
|
||||||
settings:suwFooter="@layout/choose_lock_password_footer"
|
settings:suwFooter="@layout/choose_lock_password_footer"
|
||||||
settings:suwHeaderText="@string/lockpassword_choose_your_password_header">
|
settings:suwHeaderText="@string/lockpassword_choose_your_screen_lock_header">
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
style="@style/SuwContentFrame"
|
style="@style/SuwContentFrame"
|
||||||
|
@@ -162,7 +162,7 @@ public class ChooseLockPassword extends SettingsActivity {
|
|||||||
.getBooleanExtra(ChooseLockSettingsHelper.EXTRA_KEY_FOR_FINGERPRINT, false);
|
.getBooleanExtra(ChooseLockSettingsHelper.EXTRA_KEY_FOR_FINGERPRINT, false);
|
||||||
CharSequence msg = getText(forFingerprint
|
CharSequence msg = getText(forFingerprint
|
||||||
? R.string.lockpassword_choose_your_password_header_for_fingerprint
|
? R.string.lockpassword_choose_your_password_header_for_fingerprint
|
||||||
: R.string.lockpassword_choose_your_password_header);
|
: R.string.lockpassword_choose_your_screen_lock_header);
|
||||||
setTitle(msg);
|
setTitle(msg);
|
||||||
LinearLayout layout = (LinearLayout) findViewById(R.id.content_parent);
|
LinearLayout layout = (LinearLayout) findViewById(R.id.content_parent);
|
||||||
layout.setFitsSystemWindows(false);
|
layout.setFitsSystemWindows(false);
|
||||||
|
Reference in New Issue
Block a user