3
json文件(json extnesion)的正確MIME類型是什麼,這樣當我通過intent瀏覽文件系統時只能看到json文件?使用intent搜索json文件
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("application/json");
Intent i = Intent.createChooser(intent, "View Default File Manager");
startActivityForResult(i, 1);
感謝