How to add a footer in ListView?

前端 未结 7 1735
时光取名叫无心
时光取名叫无心 2020-11-22 09:35

I am developing an application,In my application,I am using Listview for displaying data using dom parsing,I want to footer in listview,when i click footer additional more d

7条回答
  •  误落风尘
    2020-11-22 10:01

    If the ListView is a child of the ListActivity:

    getListView().addFooterView(
        getLayoutInflater().inflate(R.layout.footer_view, null)
    );
    

    (inside onCreate())

提交回复
热议问题