android 异常积累(myself)
1.android.database.StaleDataException: Attempted to access a cursor after it has been closed.我的解决方法为: //4.0以上的版本会自动关闭 (4.0--14;; 4.0.3--15) ;
if(Integer.parseInt(Build.VERSION.SDK) < 14) { cursor.close(); }
补充:移动开发 , Android ,