gpt4 book ai didi

Android webview 在默认浏览器中打开页面而不是我的 webview

转载 作者:太空狗 更新时间:2023-10-29 15:38:24 29 4
gpt4 key购买 nike

<分区>

我花了两天的时间来寻找一个代码来处理我所拥有的。我正在学习这个教程:http://techvalleyprojects.blogspot.ro/2011_08_01_archive.html

我有以下问题:我想在我的应用程序中打开的网页没有加载到我的 webview 中,而是在默认浏览器中打开。我怎样才能修改我的代码,以便在 webview 中打开所有链接。我需要一个简单的解决方案,因为我是 Android 的新手..

谢谢。

package com.example.name;

import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebChromeClient;
import android.webkit.WebView;

public class MainActivity extends Activity {
WebView browser;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

// find the WebView by name in the main.xml of step 2
browser=(WebView)findViewById(R.id.wvwMain);

// Enable javascript
browser.getSettings().setJavaScriptEnabled(true);

// Set WebView client
browser.setWebChromeClient(new WebChromeClient());

// Load the webpage
browser.loadUrl("http://news.google.com/");

}
}

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com