我使用下面的代码通过调用其他应用程序来打开 .doc 文件。
但我不希望文件被修改。
所以我想将文件设置为只读。
或任何其他避免用户修改文件的方法。
文件格式可以是*.doc、*.docx、*.ppt、*.pptx、*.pdf、*.txt。
File file = new File(FilePath);
String mimetype = ".doc\tapplication/msword";
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), mimetype);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);