我在布局中有一个文本视图(称为 - t_c),代码如下: -
<TextView
android:id="@+id/GoToTCContacting"
android:layout_width="360dp"
android:layout_height="wrap_content"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp"
android:layout_weight="2"
android:background="@drawable/border2"
android:clickable="true"
android:onClick="GoToTCContacting"
android:padding="10dp"
android:text="Contacting"
android:textColor="#FFF"
android:textSize="18sp" />
我希望 textview 在单击时打开另一个布局(称为 - t_c_contacting),其中包含一个 webview,并且该 webview 可以打开我在布局文件夹中名为 con.html 的 html 文件。
这就是 t_c_contacting 布局的编码方式:-
<WebView
android:id="@+id/contactingView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
这就是我的班级设置为打开 t_c_contacting 的方式,它工作正常,但我不知道如何用我的文件填充 webview。
public void GoToTCContacting(View view)
{
setContentView(R.layout.t_c_contacting);
}