如何在 Android 中新增 webview 焦點?
此示例演示如何向 Android 中新增 webview 焦點。
步驟 1 − 在 Android Studio 中建立一個新專案,轉至檔案 ⇒ 新建專案,並填寫所有必需的詳細資訊以建立一個新專案。
步驟 2 − 向 res/layout/activity_main.xml 新增以下程式碼。
<?xml version = "1.0" encoding = "utf-8"?>
<LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"
xmlns:app = "http://schemas.android.com/apk/res-auto"
xmlns:tools = "http://schemas.android.com/tools"
android:layout_width = "match_parent"
android:gravity = "center"
android:layout_height = "match_parent"
tools:context = ".MainActivity"
android:orientation = "vertical">
<WebView
android:id = "@+id/web_view"
android:layout_width = "match_parent"
android:layout_height = "match_parent" />
</LinearLayout>在上述程式碼中,我們使用 web 檢視來顯示 google.com。
步驟 3 − 向 src/MainActivity.java 新增以下程式碼
package com.example.myapplication;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.webkit.WebView;
import android.widget.EditText;
public class MainActivity extends AppCompatActivity {
@RequiresApi(api = Build.VERSION_CODES.P)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView web_view = findViewById(R.id.web_view);
web_view.loadUrl("https://www.google.com/");
web_view.requestFocus();
web_view.getSettings().setLightTouchEnabled(true);
}
}步驟 4 − 向 AndroidManifest.xml 新增以下程式碼
<?xml version = "1.0" encoding = "utf-8"?>
<manifest xmlns:android = "http://schemas.android.com/apk/res/android"
package = "com.example.myapplication">
<uses-permission android:name = "android.permission.INTERNET"/>
<application
android:allowBackup = "true"
android:icon = "@mipmap/ic_launcher"
android:label = "@string/app_name"
android:roundIcon = "@mipmap/ic_launcher_round"
android:supportsRtl = "true"
android:theme = "@style/AppTheme">
<activity android:name = ".MainActivity">
<intent-filter>
<action android:name = "android.intent.action.MAIN" />
<category android:name = "android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>我們嘗試執行應用程式。我認為您已將實際的 Android 移動裝置與計算機連線。要透過 Android Studio 執行應用,請開啟其中一個專案的活動檔案,然後單擊工具欄中的執行
圖示。選擇您的移動裝置作為選項,然後檢查將顯示預設螢幕的移動裝置 –

單擊 此處 下載專案程式碼
廣告
資料結構
網路
RDBMS
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP