-2
이 코드를 실행하려고하면 ActivityNotFoundException이 발생합니다. 매니페스트에없는 액티비티를 호출하려고하기 때문에 생각하지만 추가해야 할 항목을 모릅니다 매니페스트 파일에 추가합니다.ActivityNotFoundException android의 인 텐트 호출
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_settings) {
Uri path=Uri.parse("android.resource://com.android.was4fi/"+R.drawable.miarchivo);
Intent intent=new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/pdf");
}
}