我的应用程序在portait模式下被锁定。它基本上是项目的ListView(未知长度但可滚动),我希望应用程序的底部是固定大小的Webview。
那就像: app = ListView的顶部 app = Webview的底部部分
我需要webview的大小固定为200dp,而ListView应该占用剩下的空间。
有什么想法吗?
答案 0 :(得分:1)
我认为你也可以按照linearlayout的顺序放下listview和webview,并在listview中设置android:layout_weight =“1”
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:oritation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ListView
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"/>
<WebView
android:layout_width="match_parent"
android:layout_height="200dp"/>
</Linearlayout>
答案 1 :(得分:0)
像这样?:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="fill_parent"
a:layout_height="fill_parent" >
<WebView
a:id="@+id/webView1"
a:layout_width="match_parent"
a:layout_height="200dp"
a:layout_alignParentBottom="true"
a:layout_alignParentLeft="true" />
<ListView
a:id="@+id/listView1"
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:layout_above="@id/webView1"
a:layout_alignParentTop="true"
a:layout_centerHorizontal="true" >
</ListView>
</RelativeLayout>