我想得到以下内容: 我希望滚动视图在顶部始终为50%或更大..这根据底部的列表视图。列表视图将根据其拥有的项目数量最多50%。
有人知道如何获得这个吗? 我一直在尝试一些layout_width / height和weight ..但是无法找到解决方案..还没有找到stackoverflow上的解决方案..
基本设置:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".RouteGroupDetailActivity" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>
</ScrollView>
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>