android 使用webview加载网页问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 使用webview加载网页问题相关的知识,希望对你有一定的参考价值。

我在做图片站http://www.mimi199.com时要将其移动站打包成app, 

我使用的是webview来加载网页(本来想使用phonegap来做来,但是还是太麻烦了), 

具体代码如下: 



protected void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
WebView webView=new WebView(this); 
        webView.loadUrl("http://www.mimi199.com/"); 

        Intent intent= getIntent(); 
        setContentView(webView); 
    } 
搞定 

等等,首页效果是不错,但是出现了一个问题,当点击某个超链接,app会自动调用浏览器来打开新的页面,这可不是我想要的功能,我希望的是打开的时候应该是每个页面都在app中打开,关浏览器神马事啊! 

查了好多资料,原来还有个WebviewClient的类 

只需要再写个类来即成WebviewClient 

代码如下 

public class MyWebViewClient extends WebViewClient { 
    public boolean shouldOverrideUrlLoading(WebView webView,String url){ 
        webView.loadUrl(url   );//就是这句话,让每个超链接都在app的webview打开,而不是浏览器 
        return true; 
    } 

然后稍微改下MainActivity 

    protected void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
WebView webView=new WebView(this); 
        webView.loadUrl("http://www.mimi199.com/); 
//多加上这句话就可以了 
        webView.setWebViewClient(new MyWebViewClient()); 

     } 
android初学者与大家共勉

本文出自 “yang的技术专栏” 博客,请务必保留此出处http://13438626.blog.51cto.com/13428626/1977282

以上是关于android 使用webview加载网页问题的主要内容,如果未能解决你的问题,请参考以下文章

Android WebView 加载网页 样式错误

android 使用webview加载网页问题

android 使用webview加载网页问题

android中webview 怎么实现网页加载时显示加载进度

关于Android中WebView在加载网页的时候,怎样应用本地的CSS效果

android 使用webview 加载网页