下部に小さなバーがあり、その高さにはActivity
更新、戻る、進むなどのボタンがあります。私が直面している問題は、ビュー全体の高さを消費したいということです底を除く。WebView
40dp
WebView
40dp
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<WebView
android:id="@+id/id_web_view_browser"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="40dp"
android:layout_alignParentBottom="true"
android:background="#000000"
android:orientation="horizontal" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:background="@drawable/ic_action_example"
android:onClick="onClick"
android:textSize="14sp" />
</RelativeLayout>
</RelativeLayout>
上記は私がこれまでに持っているものです...現在、ブラウザの高さは画面全体の高さでRelativeLayout
、下部に があります(ブラウザの一部を覆っています)。唯一の底を残すために他にできることはあり40dp
ますRelativeLayout
か?