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