以下是在Android上打开Adobe Reader的方法:
try {
Intent intent = new Intent();
intent.setClassName("com.adobe.reader", "com.adobe.reader.AdobeReader");
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(doc), "application/pdf");
startActivity(intent);
}
catch (ActivityNotFoundException activityNotFoundException) {
activityNotFoundException.printStackTrace();
}
有没有办法打开它并指定注释的作者名称(我们可以在pdf文档上使用adobe reader 10.4.0进行宣告)?
提前致谢!
朱
答案 0 :(得分:0)
我找到的唯一解决方案是使用超级用户(在root设备上)。
以下是如何做到这一点:
Process suProcess = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(suProcess.getOutputStream());
os.writeBytes("echo \"<?xml version='1.0' encoding='utf-8' standalone='yes' ?><map><string name='commentAuthorName'>toto</string></map>\" > /data/data/com.adobe.reader/shared_prefs/com.adobe.reader.preferences.xml \n");
os.writeBytes("exit\n");
os.flush();
os.close();
suProcess.waitFor();