https://github.com/vieux/Android-Horizontal-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で読みましたが、修正されたとのことです...何か不足していると思いますか?
誰かがこれについて何か経験があれば、私はそれを感謝します!