1. 加载 html 代码
布局文件中引入 WebView 控件。
<WebView android:id="@+id/book_content"
android:layout_height="match_parent"
android:layout_width="match_parent"/>
活动文件中设置加载 html。
WebView content = findViewById(R.id.book_content);
content.loadDataWithBaseURL(null, "<h1>hello world!</h1>",
"text/html", "utf-8", null);