標籤:
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實現瀏覽器功能