0

https://github.com/vieux/Android-Horizo​​ntal-ListView の使用

そこで、複数の水平リストビューを含む画面を作成したいと考えています。これが私のXMLファイルです。

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:background="#fff"
  >

  <com.devsmart.android.ui.HorizontalListView
    android:id="@+id/listView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#fff"
  />

  <com.devsmart.android.ui.HorizontalListView
    android:id="@+id/listView2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#fff"
  />
</LinearLayout>

唯一の問題は、高さの wrap_content を実行すると、高さが画面全体として登録されることです。最初のリストビューの高さを設定されたピクセル量に変更して、2番目のリストビューがそこにあることを確認するためにテストしましたが、両方がそこにありました。

これは既知の問題であるとgithubで読みましたが、修正されたとのことです...何か不足していると思いますか?

誰かがこれについて何か経験があれば、私はそれを感謝します!

4

1 に答える 1

0

これを試して。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fff"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#fff"
    android:orientation="vertical" >

    <com.devsmart.android.ui.HorizontalListView
        android:id="@+id/listView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#fff" />

    <com.devsmart.android.ui.HorizontalListView
        android:id="@+id/listView2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#fff" />
</LinearLayout>

解決策が得られない場合は、リプレイします。

于 2012-10-24T11:23:20.407 に答える