Android アプリケーションを開発しており、HTML ページを表示する必要があります。
以下のようにWebビューを使用してこれを行うことができました
<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>