2017-11-09 6 views

答えて

0

picking PDF files using Intent in androidに基づいて次のコードを試してみてください。

Intent intent = new Intent(Intent.ACTION_VIEW); 
intent.setType("application/pdf"); 
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); 
startActivity(intent); 

関連する問題