安卓通過自帶文件管理器選擇文件、圖片


多圖(點擊為單圖,長按開啟多圖選擇)

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);//意圖:文件瀏覽器
intent.setType("image/*");//限制圖片限制
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);//多選
intent.addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(intent, 1);

單圖

Intent intent = new Intent(Intent.ACTION_PICK);//意圖:文件瀏覽器
intent.setType("image/*");//限制圖片限制
startActivityForResult(intent, 1);


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM