我使用mupdf来查看pdf文件。 我使用this instructions
构建了Android项目但是我无法点击文本中的链接e.x. url(突出显示但查看器对点击没有反应)
如果点击它,我怎么能跳过pdf文件中的链接?
我也对Android支持超链接的替代免费pdf库感兴趣。
答案 0 :(得分:1)
我们在Android自定义杂志应用程序中使用muPDF具有类似功能:可以“点击”文本中的链接,外部链接或其他页面的链接。 此应用程序是开源的,可在Github上获得。您应该很容易查看代码,并了解我们如何实现此功能。
答案 1 :(得分:-1)
"https://github.com/libreliodev/android" this link provides you pdf library which suppourts hyperlinks but it has lot other stuff,
what you need to do is after downloading the zip from the link extract it and load it in eclipse
1) create a activity and declare it in manifest
public class MyActivity extends BaseActivity /** base activity is available in library itself **/
{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent resultIntent = new Intent(this, MuPDFActivity.class);
resultIntent.setAction(Intent.ACTION_VIEW);
resultIntent.setData(Uri.parse("give the path of your pdf location"));
resultIntent.putExtra(Magazine.FIELD_TITLE, "Title");
startActivity(resultIntent);
}
}
it will load the pdf