我有一个图像按钮,单击该按钮会打开一个带有网络视图的新活动。网络视图将显示一些自定义 HTML。当我单击按钮时,Web 视图不显示任何内容。
这是我的按钮视图的代码:-
public void GoToContact(View view)
{
WebView webView;
setContentView(R.layout.webview);
webView = (WebView) findViewById(R.id.myWebView);
webView.getSettings().setJavaScriptEnabled(true);
String customHtml = "<html><body><h1>Hello, WebView</h1></body></html>";
webView.loadData(customHtml, "text/html", "UTF-8");
}
这是我的网络视图布局:-
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageButton
android:id="@+id/GoToHome"
android:onClick="GoToTC"
android:background="@drawable/test"
android:layout_width="360dp"
android:layout_height="60dp"
android:contentDescription="@string/header"/>
<WebView
android:id="@+id/myWebView"
android:layout_width="match_parent"
android:layout_height="400dp" />
</LinearLayout>