mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-06 03:31:05 +02:00
use a resource string instead of hardcoded value
This commit is contained in:
parent
409232e91d
commit
d5c9535a62
@ -58,7 +58,7 @@ public class MainActivity extends AppCompatActivity {
|
||||
final String text = notesView.getText().toString().trim();
|
||||
prefs.edit().putString(Constants.TEXT, text).apply();
|
||||
|
||||
Toast.makeText(this, "Text saved", Toast.LENGTH_SHORT).show();
|
||||
Toast.makeText(this, getResources().getString(R.string.text_saved), Toast.LENGTH_SHORT).show();
|
||||
hideKeyboard();
|
||||
updateWidget();
|
||||
}
|
||||
|
@ -2,6 +2,7 @@
|
||||
<string name="app_name">Simple Notes</string>
|
||||
<string name="widget_config">Thank you for using Simple Notes.\nFor more simple apps please visit SimpleMobileTools.com.\n</string>
|
||||
<string name="save">Save</string>
|
||||
<string name="text_saved">Text Saved</string>
|
||||
|
||||
<!-- About -->
|
||||
<string name="about">About</string>
|
||||
|
Loading…
x
Reference in New Issue
Block a user