Android WebView

来源:互联网 发布:windows怎么开发苹果 编辑:程序博客网 时间:2024/05/17 01:12
添加网络权限
<uses-permission android:name="android.permission.INTERNET" />
package com.jiyun.dell.webview;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.view.KeyEvent;import android.webkit.WebView;import android.webkit.WebViewClient;/** * 横竖屏切换:把以下代码粘贴在 manifests(配置清单文件中) activity中 * android:screenOrientation="landscape" */public class MainActivity extends AppCompatActivity {    private WebView webview;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        webview = (WebView) findViewById(R.id.webview);        webview.loadUrl("http://www.xiaoyuanwang.com.cn");        webview.getSettings().setJavaScriptEnabled(true);        webview.setWebViewClient(new WebViewClient(){            @Override            public boolean shouldOverrideUrlLoading(WebView view, String url) {                webview.loadUrl(url);                return true;            }        });//        webview.loadUrl("http://www.baidu.com");    }//如果希望浏览器后退而不是退出,需要webview   历史访问记录    @Override    public boolean onKeyDown(int keyCode, KeyEvent event) {       if (keyCode==KeyEvent.KEYCODE_BACK){           if (webview.canGoBack()){               webview.goBack();           }else {               System.exit(0);           }       }        return true;    }}
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:app="http://schemas.android.com/apk/res-auto"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical"    tools:context="com.jiyun.dell.webview.MainActivity">    <WebView        android:id="@+id/webview"        android:layout_width="match_parent"        android:layout_height="match_parent" /></LinearLayout>
原创粉丝点击