.txt で終わるファイルと .pdf で終わるファイルから選択するためにスイッチ ケースを使用しようとしています。スイッチ ケースを練習してきましたが、このケースでは実装されていません。私のコードは
private void onFileClick(Option o)
{
Uri path = Uri.parse(o.getPath());
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
try {
startActivity(intent);
}
catch (ActivityNotFoundException e) {
Toast.makeText(FileChooser.this,
"No Application Available to View PDF",
Toast.LENGTH_SHORT).show();
}
.txt、.pdf などの uri を実装したいのですが、助けてください。