-1

スクロールビュー内にリストビューを作成しています。リストビューをその親と一致させたいです。Scroll ビューはその親と一致し、完全な画面を取得しています。しかし、その中の線形レイアウトは親と一致せず、画面全体を取得していないため、リストビューとして

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >


    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >


<LinearLayout
    android:id="@+id/linearlayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

            <ListView
                android:id="@+id/listView"
                android:layout_width="match_parent"
                android:layout_height="match_parent" >

            </ListView>
</LinearLayout>
    </ScrollView>




</LinearLayout>
4

2 に答える 2

1

はい、njzk2が言ったように、それはできません。スクロールビューのListViewsに問題がありました

ListViewsは使用していません。私は一般的にボタンを使用します。彼らははるかにうまく機能します。

于 2012-09-23T21:17:23.843 に答える