このような重みレイアウトを使用した XML レイアウトがあります。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="2"
android:orientation="vertical" >
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
/>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
/>
</LinearLayout>
私のJavaファイルでは、私はこれを気に入っていますが、アプリがクラッシュします。ウェイト レイアウトを使用しない場合、すべて正常に動作します。
WebView wv = (WebView) findViewById(R.id.webView1);