mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-05 11:11:05 +02:00
couple changes to saving notes
This commit is contained in:
parent
6bcf53b771
commit
1870033aab
@ -39,7 +39,7 @@ public class Config {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public int getCurrentNoteId() {
|
public int getCurrentNoteId() {
|
||||||
return mPrefs.getInt(Constants.CURRENT_NOTE_ID, 0);
|
return mPrefs.getInt(Constants.CURRENT_NOTE_ID, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCurrentNoteId(int id) {
|
public void setCurrentNoteId(int id) {
|
||||||
|
@ -115,12 +115,12 @@ public class MainActivity extends SimpleActivity implements OpenNoteDialog.OpenN
|
|||||||
private void updateSelectedNote(int id) {
|
private void updateSelectedNote(int id) {
|
||||||
saveText();
|
saveText();
|
||||||
mCurrentNote = mDb.getNote(id);
|
mCurrentNote = mDb.getNote(id);
|
||||||
if (mCurrentNote == null)
|
mNotes = mDb.getNotes();
|
||||||
return;
|
if (mCurrentNote != null) {
|
||||||
|
|
||||||
mConfig.setCurrentNoteId(id);
|
mConfig.setCurrentNoteId(id);
|
||||||
mNotesView.setText(mCurrentNote.getValue());
|
mNotesView.setText(mCurrentNote.getValue());
|
||||||
mCurrNoteTitle.setText(mCurrentNote.getTitle());
|
mCurrNoteTitle.setText(mCurrentNote.getTitle());
|
||||||
|
}
|
||||||
|
|
||||||
mCurrNoteLabel.setVisibility(mNotes.size() <= 1 ? View.GONE : View.VISIBLE);
|
mCurrNoteLabel.setVisibility(mNotes.size() <= 1 ? View.GONE : View.VISIBLE);
|
||||||
mCurrNoteTitle.setVisibility(mNotes.size() <= 1 ? View.GONE : View.VISIBLE);
|
mCurrNoteTitle.setVisibility(mNotes.size() <= 1 ? View.GONE : View.VISIBLE);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user