set list view adapter in a fragment in android

后端 未结 2 1431
我在风中等你
我在风中等你 2021-02-07 19:12

I want a custom row, so I am using a List View in an xml and inflating into a fragment. I am very confused of how to set the adapter for the list View. I created a new adapter

2条回答
  •  执笔经年
    2021-02-07 20:14

    You must extend Listfragment (instead of Fragment), and using its ListFragment.setListAdapter to set your adapter. In the adapter getView() inflate your row.. that s all

提交回复
热议问题