-1
我想加載到我的應用程序的一些圖像由用戶選擇。 有沒有辦法啓動他的默認文件瀏覽器,並獲取圖像在此應用程序選擇?android應用程序啓動另一個應用程序並等待反饋
我想加載到我的應用程序的一些圖像由用戶選擇。 有沒有辦法啓動他的默認文件瀏覽器,並獲取圖像在此應用程序選擇?android應用程序啓動另一個應用程序並等待反饋
你可以用這個做到這一點:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/filetype");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {
startActivity(intent);
}
catch (ActivityNotFoundException e) {
Toast.makeText(OpenPdf.this,
"No app available",
Toast.LENGTH_SHORT).show();
}