以下のコードを使用して、他のアプリケーションを呼び出して.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);