how to inflate footer layout below listview without empty space
Senthil Ganesan
Greenhorn
Joined: Jul 29, 2010
Posts: 16
posted
0
hi..
Here i attached screens please find it.
I have listview and below it have footer to bind more data at footer button click event,the data has been binded well but the problem here is expanding of empty space after click event,when i scrolled to move down,when i reach the last list row by scrolling the footer position is being at same at initially loaded,but here the problem is the list scrolling is applies to this footer layout also when i scrolled down after list row the footer get's moving
down,but i need it be after list last row and i also need to know how to scrolling to be stopped when particular condition satisfied.
i'm using inflater class to add footer layout.
i placed addfooterView() before my setadapter() method
inflater2 = this.getLayoutInflater();
footerView = inflater2.inflate(R.layout.footer, sex,true);
Thanks in advance.
Here my code for footer layout xml
in my main layout i have tabhost with group of lists.