編輯:關於android開發
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED,Uri.parse("file://" + file)));
在4.4中會報權限異常
Permission Denial: not allowed to send broadcast android.intent.action.MEDIA_MOUNTED from pid=2269, uid=20016
那是因為Android4.4中限制了系統應用才有權限使用廣播通知系統掃描SD卡。
public static void refreshAlbum(Context context, File file) { try { MediaStore.Images.Media.insertImage(context.getContentResolver(), file.getAbsolutePath(), file.getName(), null); } catch(FileNotFoundException e) { e.printStackTrace(); } context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(file))); }
官方翻譯不當導致的PowerShell運行失敗一例今天我在PowerShell.com看到一篇文章,是關於Gridview的應用,覺得挺好,決定自己嘗試一下。但是實際操作
tomcat+java的web程序持續占cpu問題調試現象:在tomcat中部署Java的web應用程序,過一段時間後出現tomcat的java進程持續占用cpu高達10
Android 操作系統的內存回收機制 Android APP 的運行環境 Android 是一款基於 Linux 內核,面向移動終端的操作系統。為適應其作
Anroid之意圖的使用,Anroid之意圖使用inten常見動作:MAIN_ACTION(主視圖)、 VIEW_ACTION(查看)、 EDIT_ACTION(修改)、