@ -359,6 +359,7 @@ public class NoteEditActivity extends Activity implements OnClickListener,
* is not ready
* /
showAlertHeader ( ) ;
convertToImg ( ) ;
}
// 设置闹钟显示
@ -953,6 +954,7 @@ public class NoteEditActivity extends Activity implements OnClickListener,
mNoteEditor . setText ( getHighlightQueryResult ( mWorkingNote . getContent ( ) , mUserQuery ) ) ;
mEditTextList . setVisibility ( View . GONE ) ;
mNoteEditor . setVisibility ( View . VISIBLE ) ;
convertToImg ( ) ;
}
}
@ -1179,7 +1181,7 @@ public class NoteEditActivity extends Activity implements OnClickListener,
ContentValues contentValues = new ContentValues ( ) ;
final long id = mWorkingNote . getNoteId ( ) ;
contentValues . put ( "snippet" , mWorkingNote . mContent ) ;
contentResolver . update ( Uri . parse ( "content://micode_notes/note" ) , contentValues , " picture =?", new String [ ] { "" + id } ) ;
contentResolver . update ( Uri . parse ( "content://micode_notes/note" ) , contentValues , " _id =?", new String [ ] { "" + id } ) ;
ContentValues contentValues1 = new ContentValues ( ) ;
contentValues1 . put ( "content" , mWorkingNote . mContent ) ;
contentResolver . update ( Uri . parse ( "content://micode_notes/data" ) , contentValues1 , "mime_type=? and note_id=?" , new String [ ] { "vnd.android.cursor.item/text_note" , "" + id } ) ;