0
String mimetype = ".docx\tapplication/vnd.openxmlformats-officedocument.wordprocessingml.document";
File file = new File(FilePath, filename);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), mimetype);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

我使用上面的代码来读取 .docx 文件。
如何检查应用程序是否支持文件格式?
如果没有,下面的消息:

Toast.makeText(this, "Not be supported.", Toast.LENGTH_LONG).show();
4

1 回答 1

1

做一个这样的函数并给它你的意图。它将检查是否有任何应用程序能够处理此意图。

private boolean isIntentLaunchable(Intent intent)
{
    PackageManager packageManager = getPackageManager();
    List<ResolveInfo> activities = packageManager.queryIntentActivities(intent, 0);

    if (activities.size() > 0) {
        return true;
    }

    return false;
}
于 2012-05-10T04:42:15.077 回答