当前位置: 首页 > 知识库问答 >
问题:

Android Webview中的loadUrl()出现net::err_cache_miss失败

公羊光明
2023-03-14
<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".defaultActivity"
            android:label="@string/app_name"
          >
            <uses-permission android:name="android.permission.INTERNET"/>
            <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>
            <uses-permission android:name="android.permission.android.permission.ACCESS_NETWORK_STATE"/>
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

在活动中:

WebView _taskOrganizerView = null;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_default);
        _taskOrganizerView =   (WebView)findViewById(R.id.wvTskOrg);
        _taskOrganizerView.getSettings().setJavaScriptEnabled(true);
        if (Build.VERSION.SDK_INT >= 19) {
            _taskOrganizerView.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
        }
        _taskOrganizerView.loadUrl("http://www.google.com");
        _taskOrganizerView.setWebViewClient(new WebViewClient() );
    }

在布局中:

<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" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".defaultActivity">

    <WebView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/wvTskOrg"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />

</RelativeLayout>

共有1个答案

尹欣怿
2023-03-14

今天我也遇到了同样的问题,最后我发现我只是忘记在AndroidManifest.xml文件中添加权限annoncenten。在我加上之后一切都很好

<uses-permission android:name="android.permission.INTERNET"/>

在AndroidManifest.xml中

 类似资料:
  • 我建立了一个web应用程序,并希望创建一个android应用程序,它有一个显示我的web应用程序的webview。按照Google Developer的说明创建了一个应用程序后,我成功地用Android5.1.1将它安装在了我的手机上。 NET::ERR_CACHE_MISS

  • “SDKVersion”:“36.0.0”, “进博会”:“~36.0.0”, “react-native”:“https://github.com/expo/react-native/archive/sdk-36.0.0.tar.gz”,

  • 移动应用程序新手。我正在尝试在我的android应用程序上使用webview。但我的代码中有一个问题。我使用了https://developer.android.com/但它现在不知怎么起作用了。你能查一下我的密码吗。。。。 Android说“无法解决符号webview”... 整个代码都在这里-

  • 我的布局中有一个webview。默认情况下,在其中打开搜索表单。在搜索时,搜索表单下面会出现一个列表部分。如果单击列表中的任何链接,则打开详细信息页。现在我想控制WebView的后退导航。我把这个代码放在活动中。 在Android4.4中如何解决这个问题?

  • 我试图在Android中使用WSO2和OAuth开发一个应用程序。当我在MainActivity中创建WebView时,我编写了一个lollowing代码:

  • 据我所知,这个错误并不是昨天在Chrome上抛出的,而到今天早上,它已经抛出了。我没有更改任何浏览器设置。我附上了一张截图(打开/关闭开发者工具窗口四次后): 这个问题与Stack Overlow post未能在Chrome下加载资源完全相似,只是它只发生在我在Chrome中“inspect element”时。以下是我掌握的细节: 我尽我最大的能力撤销了我做的一切,从昨晚(当我没有这个错误),错