2
我想用我的應用程序打開PPT文件。我如何檢查是否有可以顯示設備上安裝的這些文件的應用程序,以及如何啓動它?打開PPT文件
我想用我的應用程序打開PPT文件。我如何檢查是否有可以顯示設備上安裝的這些文件的應用程序,以及如何啓動它?打開PPT文件
嘗試類似這樣的事情。還沒有嘗試,但可能工作
final Uri uri = Uri.fromFile(file);
final Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(uri, "application/vnd.ms-powerpoint");
PackageManager pm = getPackageManager();
List<ResolveInfo> list = pm.queryIntentActivities(intent, 0);
if(list.size() > 0)
startActivity(context, intent);
File file = new File("path_to_the_file.ppt");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file),"application/vnd.ms-powerpoint");
startActivity(intent);
嘗試用這種
的文件是在應用程序的原始文件夾中。我必須使用哪個uri(我是android新手,如果這個問題很愚蠢,請原諒我)。 – user1638628
可以從原始文件夾發送,但許多應用程序不能正確處理授予的uri權限,因此更好的方法是將文件複製到內部/外部存儲器,然後通過uri – nandeesh
您怎麼做到這一點?我只能找到將文件從內部複製到外部存儲的可能性,但不能從原始文件夾複製文件。 – user1638628