Why is my ListView not showing anything?

后端 未结 5 683
长发绾君心
长发绾君心 2020-12-17 15:38

I have a very basic ListView in android and had set a very basic adapter. My problem is that the list view does not show anything, regardless of the adapter and the notifyDa

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-17 16:33

    I was using the Data Binding example from the book Hello Android by Ed Burnette (great book).

    I changed the item layout from A RelativeLayout to a LinearLayout; however, I did not add an orientation when I made the change.

    Once I added android:orientation="vertical" everything worked fine.

    Two hours of my life on this one.

提交回复
热议问题