私は次のように取得したい:スクロールビューを常に上部で50%以上にしたい..これは、下部のリストビューによると。リストビューは、アイテムの量に応じて最大 50% になります。
誰かがこれを取得する方法を知っていますか? 私はlayout_width/heightとweightsでいくつかのことを試してきました..しかし、解決策に到達できません..どちらも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>