mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-05 03:01:05 +02:00
make sure to save the note at creating a new one, or opening another one
This commit is contained in:
parent
4aea8e42d1
commit
d765177e6b
@ -101,6 +101,7 @@ public class MainActivity extends SimpleActivity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void updateSelectedNote(int index) {
|
private void updateSelectedNote(int index) {
|
||||||
|
saveText();
|
||||||
mConfig.setCurrentNoteIndex(index);
|
mConfig.setCurrentNoteIndex(index);
|
||||||
mCurrentNote = mNotes.get(index);
|
mCurrentNote = mNotes.get(index);
|
||||||
mNotesView.setText(mCurrentNote.getValue());
|
mNotesView.setText(mCurrentNote.getValue());
|
||||||
@ -134,6 +135,7 @@ public class MainActivity extends SimpleActivity {
|
|||||||
} else if (mDb.doesTitleExist(title)) {
|
} else if (mDb.doesTitleExist(title)) {
|
||||||
Utils.showToast(getApplicationContext(), R.string.title_taken);
|
Utils.showToast(getApplicationContext(), R.string.title_taken);
|
||||||
} else {
|
} else {
|
||||||
|
saveText();
|
||||||
final Note newNote = new Note(0, title, "");
|
final Note newNote = new Note(0, title, "");
|
||||||
final int id = mDb.insertNote(newNote);
|
final int id = mDb.insertNote(newNote);
|
||||||
newNote.setId(id);
|
newNote.setId(id);
|
||||||
@ -205,6 +207,9 @@ public class MainActivity extends SimpleActivity {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void saveText() {
|
private void saveText() {
|
||||||
|
if (mCurrentNote == null)
|
||||||
|
return;
|
||||||
|
|
||||||
final String newText = getCurrentNote();
|
final String newText = getCurrentNote();
|
||||||
final String oldText = mCurrentNote.getValue();
|
final String oldText = mCurrentNote.getValue();
|
||||||
if (!newText.equals(oldText)) {
|
if (!newText.equals(oldText)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user