首先打开html页面,但单击该页面中的任何链接会导致应用程序崩溃

时间:2018-03-27 09:32:34

标签: android android-webview

我的WebView在应用启动时打开本地html文件。它完全打开,但该页面中的任何链接都会导致点击时应用程序崩溃。

在错误报告中,它说,

signal 6 (SIGABRT), code-6 (SI_TKILL), fault addr ----- Abort message: 'art/runtime/java_vm_ext:cc:475] JNI DETECTED ERROR IN APPLICATION: JNI NewLocalRef called with pending exception adroid.os.FileUriExposedException: file///android_asset/page2.html exposed beyond app through Intget.getData()

类似的问题已经解决了很多次,但即使在挖掘不同的解决方案一段时间后,我也无法解决问题。任何帮助将不胜感激。

我的MainActivity.java页面:

import android.app.Activity;
import android.os.Bundle;
import android.view.KeyEvent;
import android.webkit.WebView;

public class MainActivity extends Activity {
    private WebView myWebView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //Load WebView with HTML from Assets folder
        myWebView = (WebView) findViewById(R.id.webView1);
        myWebView.getSettings().setJavaScriptEnabled(true);
        myWebView.loadUrl("file:///android_asset/page1.html");
    }

    @Override
    public void onBackPressed() {
        if (myWebView.canGoBack())
            myWebView.goBack();
        else
            super.onBackPressed();

    }
}

我的AndroidManifest.xml页面:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.html">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name="com.rimikri.PRx.MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

1 个答案:

答案 0 :(得分:0)

正如文档所说:&#34;不鼓励这种曝光,因为接收应用可能无法访问共享路径。例如,接收应用程序可能没有请求READ_EXTERNAL_STORAGE运行时权限,或者平台可能正在跨用户配置文件边界共享Uri。&#34; (https://developer.android.com/reference/android/os/FileUriExposedException.html

尝试添加READ_EXTERNAL_STORAGE权限:https://developer.android.com/training/permissions/requesting.html