Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions library/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<string name="passcode_re_enter_passcode">Re-enter your passcode</string>
<string name="passcode_change_passcode">Change passcode</string>
<string name="passcode_set">Passcode set</string>
<string name="passcode_set_for_first_time">Set Your PIN</string>
<string name="passcode_wrong_passcode">Wrong passcode, please try again.</string>
<string name="passcode_preference_title">Passcode lock</string>
<string name="passcode_turn_off">Turn passcode off</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ protected void onCreate(Bundle savedInstanceState) {
Bundle extras = getIntent().getExtras();
if (extras != null) {
type = extras.getInt(KEY_TYPE, -1);
if (type ==0){
((TextView) findViewById(R.id.passcodelock_prompt)).setText(R.string.passcode_set_for_first_time);
}
}
}

Expand Down