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();