我是初学者,我要求这只是为了获取知识。所以在我的应用程序中,我有一个MainActivity及其布局activity_main.xml。
这是活动主要代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.testapp.myapp.MainActivity">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button 1"
android:id="@+id/btn1"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/btn1"
android:text="Button 2"
android:id="@+id/btn2"/> </RelativeLayout>
这是MainActivity.java
package com.testapp.myapp;
import android.app.Activity;
import android.os.Bundle;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}}
我创建了两个名为By Button1PDF和Button2PDF的Blank活动,每个活动分别名为button1_pdf.xml和button2_pdf.xml。
所以我想做的是,我想针对这些新活动设置一个pdf文件,当我点击btn1或btn2 On MainActivity时,我希望它显示新活动Button1PDF或Button2PDF活动,它将包含PDF文件。
我在网上尝试使用webview,它完美无瑕。但现在我想让它显示离线(意味着完全离线)
我做了一些研究,我找到了一些类似的库 编译'com.github.barteksc:android-pdf-viewer:2.0.3'
但我不知道如何使用它。希望有人能清除我的怀疑。 感谢。
答案 0 :(得分:0)
您需要先下载文件,然后使用该库将其显示给用户。 Read this question on how to download file from internet