2010年11月14日 星期日

【Android】simplecursoradapter column '_id' does not exist

錯誤
在建構 SimpleCursorAdapter 時 try catch出
column '_id' does not exist
的錯誤訊息。
try{
    SimpleCursorAdapter adapter =
        new SimpleCursorAdapter(this, android.R.layout.simple_list_item_1, 
        mNotesCursor, from, to);
    setListAdapter(adapter); 
}catch(Exception ex){
    Log.e("Note class", "error: " + ex.getMessage(), ex);
}  

2010年11月12日 星期五

【Android】Permission Denial: starting Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] from null (pid=-1, uid=-1) requires null

錯誤
ActivityManager: java.lang.SecurityException: Permission Denial: starting Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] from null (pid=-1, uid=-1) requires null

2010年11月3日 星期三

【Android】Unable to upload file: Local file doesn't exist.

錯誤訊息
Failed to upload xxxx.apk on device 'emulator-xxxx'
java.io.IOException: Unable to upload file: Local file doesn't exist.