0

2つのボタンの間に挟まれたListViewがあります。画面全体がScrollView

    <Button
        android:text="Take a Picture"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/btnPicture"
        android:layout_marginRight="3dp"
        android:layout_marginLeft="3dp"
        android:layout_marginTop="5dp"
        android:textSize="25dp"/>
    <ListView
        android:minWidth="25px"
        android:minHeight="25px"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/lstPhotos"
        android:visibility="gone" />
    <Button
        android:text="Location Type"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/btnLocationType"
        android:layout_marginRight="3dp"
        android:layout_marginLeft="3dp"
        android:layout_marginTop="5dp"
        android:textSize="25dp" />

コードでリストビューにアイテムを追加するときに、リストビューが表示されるのに十分なスペースを占めるようにするにはどうすればよいですか。1つのアイテムを表示するように展開されますが、2番目のアイテムを追加すると、それ以上展開されません。

リストビューに2番目の画像行を追加した後、ここに表示されますが、表示されません。

ここに画像の説明を入力してください

4

1 に答える 1

0

スクロールビュー内にリストビューを配置しないでください。たとえば、ここを参照してください。ListViewを折りたたむことなくScrollViewに配置するにはどうすればよいですか?

于 2012-06-08T23:31:06.013 に答える