摘要:
1 BroadcastReceiver mExternalStorageReceiver; 2 boolean mExternalStorageAvailable = false; 3 boolean mExternalStorageWriteable = false; 4 5 void updateExternalStorageState() { 6 String state = Environment.getExternalStorageState(); 7 if (Environment.MEDIA_MOUNTED.equals(state)) { 8 ... 阅读全文
posted @ 2013-07-29 16:01
Agrimony
阅读(358)
评论(0)
推荐(0)