嗨,我是 android 开发的新手。我通过ddms手动将pdf文件保存在模拟器sdcard中,当我尝试使用以下代码在模拟器中读取pdf文件时,我还在模拟器中安装了“ adobe reader ”
File file =
new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/iTunes Connect.pdf");
Uri path = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.setDataAndType(path,"application/pdf");
try
{
startActivity(intent);
}
catch (ActivityNotFoundException e)
{
Toast.makeText(xv.this,
getString(R.string.app_name),
Toast.LENGTH_SHORT).show();
}
我收到文件路径无效错误。
任何人都可以帮助我。