溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android WebView詳解

發(fā)布時間:2020-07-01 01:51:41 來源:網(wǎng)絡(luò) 閱讀:700 作者:jethai 欄目:移動開發(fā)


MainActivity.java

package com.example.web;

import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.Button;

public class MainActivity extends Activity implements OnClickListener {
    private WebView webView;
    private ProgressDialog dialog;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button intentButton = (Button) findViewById(R.id.intent);

        Button webviewButton = (Button) findViewById(R.id.webviewButton);
        init();

        intentButton.setOnClickListener(this);
        webviewButton.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
        // 使用內(nèi)置系統(tǒng)瀏覽器打開網(wǎng)頁
        case R.id.intent:
            Intent intent = new Intent(Intent.ACTION_VIEW);
            Uri uri = Uri.parse("http://www.baidu.com");
            intent.setData(uri);
            // Intent intent =new Intent(Intent.ACTION_VIEW,uri)
            startActivity(intent);
            break;
        case R.id.webviewButton:
            // webview默認(rèn)使用系統(tǒng)瀏覽器打開網(wǎng)頁,setWebViewClient讓網(wǎng)頁在webview中打開
            webView.loadUrl("http://www.baidu.com");
            break;
        default:
            break;
        }

    }

    private void init() {
        webView = (WebView) findViewById(R.id.webView);
        // WebView加載本地資源
        // webView.loadUrl("file:///android_asset/example.html");
        webView.getSettings().setJavaScriptEnabled(true);
        webView.setScrollBarStyle(0);
        webView.getSettings().setAllowFileAccess(true);
        webView.getSettings().setBuiltInZoomControls(true);
        // WebView加載頁面優(yōu)先使用緩存加載
        webView.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK);
        // 覆蓋WebView默認(rèn)通過第三方或者是系統(tǒng)瀏覽器打開網(wǎng)頁的行為,使得網(wǎng)頁可以在WebView中打開
        webView.setWebViewClient(new WebViewClient() {
            @Override
            public boolean shouldOverrideUrlLoading(WebView view, String url) {
                // WebViewClient幫助WebView去處理一些頁面控制和請求通知
                // 返回值是true的時候控制網(wǎng)頁在WebView中去打開,如果為false調(diào)用系統(tǒng)瀏覽器或第三方瀏覽器去打開
                view.loadUrl(url);
                return true;
            }

        });

        //打開網(wǎng)頁時添加進(jìn)度條
        webView.setWebChromeClient(new WebChromeClient() {
            @Override
            public void onProgressChanged(WebView view, int newProgress) {
                // newProgress 1-100之間的整數(shù)
                if (newProgress == 100) {
                    // 網(wǎng)頁加載完畢,關(guān)閉ProgressDialog
                    closeDialog();
                } else {
                    // 網(wǎng)頁正在加載,打開ProgressDialog
                    openDialog(newProgress);
                }
            }

            private void closeDialog() {
            
                if (dialog != null && dialog.isShowing()) {
                    dialog.dismiss();
                    dialog = null;
                }
            }

            private void openDialog(int newProgress) {

                if (dialog == null) {
                    dialog = new ProgressDialog(MainActivity.this);
                    dialog.setTitle("正在加載");
                    dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
                    dialog.setProgress(newProgress);
                    dialog.show();

                } else {
                    dialog.setProgress(newProgress);
                }

            }
        });

    }

    // 改寫物理按鍵——返回的邏輯
    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {
        
        if (keyCode == KeyEvent.KEYCODE_BACK) {
            // Toast.makeText(this, webView.getUrl(),
            // Toast.LENGTH_SHORT).show();
            if (webView.canGoBack()) {
                webView.goBack();// 返回上一頁面
                return true;
            } else {
                System.exit(0);// 退出程序
            }
        }
        return super.onKeyDown(keyCode, event);
    }

}

Android WebView詳解

參考文章:

http://www.cnblogs.com/mengdd/archive/2013/03/01/2938295.html

視頻:

http://www.imooc.com/video/2269


附件:http://down.51cto.com/data/2366259
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI