我正在构建一个需要查看本地.pdf文件的应用程序。所以我创建了一个包含所需文件的android_asset
目录结构:Invoice / app / src / main / android_asset /originalInvoice.pdf
但是在尝试打开它时我一直收到错误:
WEBPAGE无法使用
在。的网页
文件:///android_asset/originalInvoice.pdf
无法加载因为:
的净:: ERR_FILE_NOT_FOUND
这是我的MainActivity.java
private WebView mWebView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mWebView = (WebView) findViewById(R.id.activity_main_webview);
// Enable Javascript
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
mWebView.loadUrl("file:///android_asset/originalInvoice.pdf");
// Force links and redirects to open in the WebView instead of in a browser
mWebView.setWebViewClient(new WebViewClient());
}
@Override
public void onBackPressed() {
if(mWebView.canGoBack()) {
mWebView.goBack();
} else {
super.onBackPressed();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
这是我的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="kgdev.invoice" >
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我隐约知道kit-kat修复了WebView应用程序中的一些漏洞,这可能会导致我的问题。我只是不知道如何解决它
如果这是我在API 19或更高版本上开发的任何帮助
我对android编程很新,所以我在这里尽我最大的努力:)
提前谢谢!
~Kevin Grout
答案 0 :(得分:1)
WebView无法自行显示PDF。至少有查看PDF的基本方法(参见Render a PDF file using Java on Android):
通过Google文档在WebView中显示(这需要互联网连接)。
触发打开系统上安装的PDF查看器的意图,或打开Play商店安装一个。
使用Lollipop中添加的PdfRenderer视图类。