我正在尝试制作一个底部有一个小栏,其高度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
?