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 に答える