android 下 利用webview實現瀏覽器功能

來源:互聯網
上載者:User

標籤:

android 下 利用webview實現瀏覽器功能:

 

1、介面添加WEBVIEW控制項。

2、在介面.JAVA字碼頁面(protected void onCreate(Bundle savedInstanceState) 方法中)添加如下代碼:

//#region
WebView wb=(WebView)findViewById(R.id.Wb_Main);
//設定WebView屬性,能夠執行Javascript指令碼
wb.getSettings().setJavaScriptEnabled(true);
//載入需要顯示的網頁
wb.loadUrl("http://www.baidu.com");
//設定web視圖
//當使用者點擊了你的WebView中的一個連結,預設的行為是Android啟動一個處理URL的應用,通常,預設的瀏覽器開啟並下載目標URL。但是,你可以在你的WebView中覆蓋這一行為,使得串連仍在你的WebView中開啟。
wb.setWebViewClient(new WebViewClient());
//#endregion

 

3、設定設定檔並添加代碼

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.hi"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="18"
android:targetSdkVersion="18" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<activity
android:name=".MainActivity"
android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

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

 

 

------------------------------------------------

通常我們在製作瀏覽器用戶端時候會遇到如下問題:

1、如何讓WEBVIEW全屏?

  找到布局介面,找到主表單對象,清除PADDING等間距值即可。

2、如何取消頂部頭?

  找到設定檔,選擇APPLICATION選項卡,進入APPLIACATION NODE布局部分,右側詳見theme節點,選擇“@android:style/Theme.NoTitleBar.Fullscreen”值即可。

 

 

----------------------------------------------

完成如上操作及步驟即可實現ANDROID的瀏覽器用戶端。

 

android 下 利用webview實現瀏覽器功能

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.