溫馨提示×

溫馨提示×

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

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

WebView組件使用是怎樣的

發(fā)布時(shí)間:2021-11-26 11:33:50 來源:億速云 閱讀:148 作者:柒染 欄目:移動開發(fā)

這篇文章給大家介紹WebView組件使用是怎樣的,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

Android手機(jī)中內(nèi)置了一款高性能webkit內(nèi)核瀏覽器,在SDK中封裝成了WebView組件,它可以用來瀏覽網(wǎng)絡(luò)內(nèi)容。那么,如何使用它呢?

第一次使用WebView控件加載組件

1)mainfest.xml添加internet權(quán)限

<manifest> <uses-permission android:name="android.permission.INTERNET" /> manifest>

2)layout添加webView組件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"     android:layout_width="fill_parent"     android:layout_height="fill_parent"> <WebView     android:id="@+id/webview"     android:layout_width="fill_parent"     android:layout_height="fill_parent"     /> LinearLayout>

3)添加activity

package com.example.webview1;  import android.app.Activity; import android.os.Bundle; import android.view.KeyEvent; import android.view.Menu; import android.webkit.WebView; import android.webkit.WebViewClient;  public class WebViewActivity extends Activity {     private WebView webView;     @Override     public void onCreate(Bundle savedInstanceState) {         super.onCreate(savedInstanceState);         setContentView(R.layout.activity_web_view);         webView = (WebView) findViewById(R.id.webview);         //設(shè)置javasctipt可用         webView.getSettings().setJavaScriptEnabled(true);         //加載url,但是不會顯示,注意哦!!         webView.loadUrl("http://www.baidu.com");         //指定顯示控件(class)         webView.setWebViewClient(new myWebViewClient());     }     @Override     public boolean onCreateOptionsMenu(Menu menu) {         getMenuInflater().inflate(R.menu.activity_web_view, menu);         return true;     }     //為了讓回退鍵管用     @Override     public boolean onKeyDown(int keyCode, KeyEvent event) {         // TODO Auto-generated method stub         if(keyCode==event.KEYCODE_BACK&&webView.canGoBack()){             webView.goBack();             return true;         }         return super.onKeyDown(keyCode, event);     }      /**      * webView視圖客戶端      * @author Administrator      *      */     class myWebViewClient extends WebViewClient{          @Override         public boolean shouldOverrideUrlLoading(WebView view, String url) {             // TODO Auto-generated method stub //          return super.shouldOverrideUrlLoading(view, url);             webView.loadUrl(url);             return true;         }              } }

4)ok!大功告成,運(yùn)行吧??!

5)模擬器用bluestacks

關(guān)于WebView組件使用是怎樣的就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)
推薦閱讀:
  1. webview組件詳解
  2. webview

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

AI