打開Android模擬器PDF文件您好,我是新來的Android開發。我手動保存通過DDMS在模擬器的SD卡一個PDF文件,然後我也安裝在模擬器「Adobe Reader的」當我試圖讀取模擬器 PDF文件用下面的代碼如何從SD卡
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();
}
我得到的文件路徑無效錯誤。
任何一個可以幫我在這。
並讀取SD卡的模擬器存在嗎? – skygeek
通過adobereader我能夠看到文件 –
還好你擁有所有權限讀取你的應用程序清單的路徑 – skygeek