我的应用程序被锁定在肖像模式。它基本上是项目的 ListView(长度未知但可滚动),我希望应用程序的底部是固定大小的 Webview。
就像:应用程序的顶部 = ListView 应用程序的底部 = Webview
我需要 webview 是固定大小的,比如 200dp,而 ListView 应该得到其余的空间。
有任何想法吗?
我的应用程序被锁定在肖像模式。它基本上是项目的 ListView(长度未知但可滚动),我希望应用程序的底部是固定大小的 Webview。
就像:应用程序的顶部 = ListView 应用程序的底部 = Webview
我需要 webview 是固定大小的,比如 200dp,而 ListView 应该得到其余的空间。
有任何想法吗?
我认为您也可以将 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>
像这样?:
<?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>