主動通知Android系統圖庫進行更新

項目中遇到調用圖庫進行圖片的選擇,由於不能主動及時更新,遂實現代碼調用實現主動及時更新。html

廢話很少刷,看代碼。ide

方式一,發送一個廣播,url

 

sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE,Uri.parse("file://"+fileSD_file)));orm

 

 

方式二,經過MediaScannerConnection 類htm

 

MediaScannerConnection.scanFile(context, new String[]{fileSD_file.toString()}, null, null);圖片

 

 

方式三,也是經過MediaScannerConnection 類get

 

MediaScannerConnection msc=new MediaScannerConnection(context,new MediaScannerConnectionClient(){
@Override
public void onMediaScannerConnected() {
// TODO Auto-generated method stub

}
@Override
public void onScanCompleted(String path, Uri uri) {
// TODO Auto-generated method stub

}
}); 
msc.connect();
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
URL url = null;
try {
url = fileSD_file.toURL();
} catch (MalformedURLException e) {
e.printStackTrace();
}

MimeTypeMap mtm=MimeTypeMap.getSingleton();

msc.scanFile(fileSD_file.toString(), mtm.getMimeTypeFromExtension(mtm.getFileExtensionFromUrl(url.toString())));io

//此句上面的一句能夠,下面的一句也能夠,都適合這種方法(已用顏色標示)。

// msc.scanFile(fileSD_file.getAbsolutePath(), null);

msc.disconnect();ast

 

來源:http://www.bozhiyue.com/anroid/boke/2016/0318/3524.htmlform

相關文章
相關標籤/搜索