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

희망이 있습니다.