如何在 Android 中更改 WebView 的字体类型?
本示例说明如何在 Android 中更改 WebView 的字体类型。
步骤 1 − 在 Android Studio 中创建新项目,转到文件 ⇒ 新项目,并填写所有必需的详细信息以创建新项目。
步骤 2 − 将以下代码添加到 res/layout/activity_main.xml 中。
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/relativeLayout" android:padding="8dp" tools:context=".MainActivity"> <WebView android:id="@+id/webView" android:layout_width="match_parent" android:layout_height="match_parent"/> </RelativeLayout>
步骤 3 – 创建 assets 文件夹。右键单击 assets 文件夹 >> 创建新文件 (webView1.html),然后添加以下代码:
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>WebView9</title> <meta forua="true" http-equiv="Cache-Control" content="max-age=0"/> <style type="text/css"> @font-face { font-family: 'Font'; src:url("file:///android_asset/Font.otf") } body { font-family: 'Font', serif; font-size: medium; text-align: justify; color:#ffffff } </style> </head> <body style="background-color:#212121"> This file was loaded from android assets folder using webView.</body> </html>
步骤 4 − 向 src/MainActivity.java 添加以下代码:
import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.webkit.WebView; public class MainActivity extends AppCompatActivity { WebView webView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); webView = findViewById(R.id.webView); webView.loadUrl("file:///android_asset/webView1.html"); } }
步骤 5 - 将以下代码添加到 androidManifest.xml 中:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="app.com.sample"> <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 运行该应用,请打开一个项目的活动文件,然后单击工具栏上的运行 图标。选择你的移动设备作为选项,然后查看显示默认屏幕的移动设备 –
单击 此处 下载项目代码。
广告