为 Zip 文件选择 Intent
Choosing Intent for Zip files
我有一个从 url 下载的 zip 文件,其路径设置为 /storage/emulated/0/myapp/downloadedfile.zip
现在我想通过选择意图打开这个 zip 文件以列出可用的应用程序来打开下载的文件。
我在清单中设置了这个:
<activity
android:name=".MyApp"
android:alwaysRetainTaskState="true"
android:launchMode="singleInstance"
android:theme="@style/MyMaterialTheme">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="application/zip"/>
</intent-filter>
</activity>
现在我调用这种方式来打开意图选择器
File downloadedfile = new File(Environment.getExternalStoragePublicDirectory(Environment.getExternalStorageDirectory() + "/myapp") + "/" + "downloadedfile.zip");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(downloadedfile), "application/zip");
startActivity(intent);
如果我已经在我的应用程序上安装了 ESFileExplorer
,那么这会很好用
但我想检查是否有任何预安装的应用程序可用,否则我需要将 playstore
也显示为选项之一,以便用户可以下载该应用程序并安装 ESFileExplorer 应用程序。
那我该怎么做呢?
Android 意向 Zip 文件
try{
File downloadedfile = new File(Environment.getExternalStoragePublicDirectory(Environment.getExternalStorageDirectory() + "/myapp") + "/" + "downloadedfile.zip");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(downloadedfile), "application/zip");
startActivity(intent);
}catch (ActivityNotFoundException Ae){
//When No application can perform zip file
Uri uri = Uri.parse("market://search?q=" + "application/zip");
Intent myAppLinkToMarket = new Intent(Intent.ACTION_VIEW, uri);
try {
startActivity(myAppLinkToMarket);
} catch (ActivityNotFoundException e) {
//the device hasn't installed Google Play
Toast.makeText(MainActivity.this, "You don't have Google Play installed", Toast.LENGTH_LONG).show();
}
}
您可以使用 ActivityNotFoundException 捕获 startActivity 意图,然后您可以在 Play 商店中启动 ES 文件资源管理器市场应用程序。
我有一个从 url 下载的 zip 文件,其路径设置为 /storage/emulated/0/myapp/downloadedfile.zip
现在我想通过选择意图打开这个 zip 文件以列出可用的应用程序来打开下载的文件。
我在清单中设置了这个:
<activity
android:name=".MyApp"
android:alwaysRetainTaskState="true"
android:launchMode="singleInstance"
android:theme="@style/MyMaterialTheme">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="application/zip"/>
</intent-filter>
</activity>
现在我调用这种方式来打开意图选择器
File downloadedfile = new File(Environment.getExternalStoragePublicDirectory(Environment.getExternalStorageDirectory() + "/myapp") + "/" + "downloadedfile.zip");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(downloadedfile), "application/zip");
startActivity(intent);
如果我已经在我的应用程序上安装了 ESFileExplorer
,那么这会很好用
但我想检查是否有任何预安装的应用程序可用,否则我需要将 playstore
也显示为选项之一,以便用户可以下载该应用程序并安装 ESFileExplorer 应用程序。
那我该怎么做呢?
Android 意向 Zip 文件
try{
File downloadedfile = new File(Environment.getExternalStoragePublicDirectory(Environment.getExternalStorageDirectory() + "/myapp") + "/" + "downloadedfile.zip");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(downloadedfile), "application/zip");
startActivity(intent);
}catch (ActivityNotFoundException Ae){
//When No application can perform zip file
Uri uri = Uri.parse("market://search?q=" + "application/zip");
Intent myAppLinkToMarket = new Intent(Intent.ACTION_VIEW, uri);
try {
startActivity(myAppLinkToMarket);
} catch (ActivityNotFoundException e) {
//the device hasn't installed Google Play
Toast.makeText(MainActivity.this, "You don't have Google Play installed", Toast.LENGTH_LONG).show();
}
}
您可以使用 ActivityNotFoundException 捕获 startActivity 意图,然后您可以在 Play 商店中启动 ES 文件资源管理器市场应用程序。