Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
183 views
in Technique[技术] by (71.8m points)

Android ListView addFooterView() issue

I have a ListView which is getting populated from service response. When service is called i am showing a progressbar by adding footerview by inflating progressbar view and hiding it once listview is populated.

Note: I am adding footerview before setting adapter. Then i am adding footerview at each service call.

problem: when service returns non empty response everything is working fine(footerview is shown and hided after listview is populated) when service response is empty i.e. listview is empty in next method calls to addFooterView() not working(not showing footerview).

Following is sample code

addFooterView(loadingView, null, false);
m_List.addAll(listItems);
m_adapter.notifyDataSetChanged();
removeFooterView(loadingView);

Note: If each time list size is greater than zero i am not facing problem.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

add footer view if your arraylist has data that is binding to your adapter and also check listView.getFooterViewCount before adding if it is already has.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...