2
我想在一個線性佈局中顯示多個HorizontalListView。但是,我只能看到第一個HorizontalListView。之後所有的東西都消失了。 以下是layout.xml`顯示HorizontalListView的多行
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fff"
android:orientation="vertical">
<com.devsmart.android.ui.HorizontalListView
android:id="@+id/saladMenuView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ddd"
android:fillViewport="false" />
<com.devsmart.android.ui.HorizontalListView
android:id="@+id/pizzaMenuView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ddd"
android:fillViewport="false" />
</LinearLayout>`
我總能看到saladMenuView,但pizzaMenuView一直沒有出現。
有誰知道爲什麼?
嘗試取出機器人:fillViewport = 「假」 – QAMAR
嘗試添加一些內容,他們兩個 –
的我找到了原因。看起來問題是由**「android:layout_height =」wrap_content「**引起的。如果我指定一個固定的高度,如**」android:layout_height =「220dp」**,那麼接下來的兩個horizontallistview都會顯示出來?有誰知道爲什麼? –