您好,登錄后才能下訂單哦!
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()) { // 使用內置系統瀏覽器打開網頁 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默認使用系統瀏覽器打開網頁,setWebViewClient讓網頁在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加載頁面優先使用緩存加載 webView.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK); // 覆蓋WebView默認通過第三方或者是系統瀏覽器打開網頁的行為,使得網頁可以在WebView中打開 webView.setWebViewClient(new WebViewClient() { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { // WebViewClient幫助WebView去處理一些頁面控制和請求通知 // 返回值是true的時候控制網頁在WebView中去打開,如果為false調用系統瀏覽器或第三方瀏覽器去打開 view.loadUrl(url); return true; } }); //打開網頁時添加進度條 webView.setWebChromeClient(new WebChromeClient() { @Override public void onProgressChanged(WebView view, int newProgress) { // newProgress 1-100之間的整數 if (newProgress == 100) { // 網頁加載完畢,關閉ProgressDialog closeDialog(); } else { // 網頁正在加載,打開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); } }
參考文章:
http://www.cnblogs.com/mengdd/archive/2013/03/01/2938295.html
視頻:
http://www.imooc.com/video/2269
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。