tags:

views:

71

answers:

1

I am new to android , i want to know how to use ListView.FixedViewInfo,

so i need a sample (code) application with output , can any one help me regarding on this.

Thanks In Advance, Sankar Ganesh @ Tilsan

A: 

You do not use ListView.FixedViewInfo directly. Use addHeaderView() or addFooterView() on ListView. Internally, that will use ListView.FixedViewInfo

CommonsWare
i used above what u said but my problem is at the first time the footer aligns bottom of the list, after click event from footer in order to load more data, the footer is expanding it alignments goes wrong that is my searching for this..
Tilsan The Fighter
@Sankar Ganesh: You cannot use `addFooterView()` this way, AFAIK. Take a look at my `EndlessAdapter` for another solution to your problem: http://github.com/commonsguy/cwac-endless
CommonsWare
Thank You Mr.CommonsWare for ur Valuable Comments
Tilsan The Fighter
I donot want to use a Static Array, My need is i have to parse a URL and bind the data's in the Url to a list.
Tilsan The Fighter
Tilsan The Fighter
@Sankar Ganesh: If you have additional questions, then start new **specific** StackOverflow questions about what problems you are encountering.
CommonsWare