我正在开发一个 android 应用程序,我需要显示 HTML 页面。
我设法使用下面的网络视图做到了这一点
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</WebView>
<Button
android:id="@+id/disease_consultation_button"
android:layout_width="@dimen/buttonWidth"
android:layout_height="@dimen/buttonHeight"
android:layout_gravity="right"
android:layout_marginRight="20dp"
style="@style/buttonStyle"
android:text="@string/continue_button" />
</LinearLayout>
并来自java代码
WebView webView;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.disease_web_view_activity);
webView = (WebView) findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);
String customHtml = "<html><body><h1>Hello, WebView</h1></body></html>";
webView.loadData(customHtml, "text/html", "UTF-8");
}
该按钮没有出现在视图中,我不知道为什么?
谁能帮帮我?
视图看起来像这样
编辑:这就是我所做的并解决了问题=)
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView android:id="@+id/disease_consultation_titleTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/activityTitle" />
<Button
android:id="@+id/disease_consultation_button"
android:layout_width="wrap_content"
android:layout_height="@dimen/buttonHeight"
android:layout_gravity="right"
android:layout_marginLeft="550dp"
android:layout_marginTop="80dp"
style="@style/buttonStyle"
android:text="@string/request_new_consultation" />
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="150dp" >
</WebView>
</RelativeLayout>