[android-developers] Re: webservice response parsed data

2012-01-10 Thread arun kumar
below is the xml file i has to show name and total in textview which am able to do but i has to show the Monthname in the list in next activity where am struck...so plzz can any one give guindance on this . NameAndMontotal item NameArjun/Name Total406/Total Unit$/Unit item

Re: [android-developers] Re: webservice response parsed data

2012-01-10 Thread Mukesh Srivastav
OMG, Arun, where are you setting the last parameter of the list.do you see the below example which i have shown in bold letters. ListAdapter adapter = new ArrayAdapterString(this, android.R.layout.simple_list_item_multiple_choice,*list*); The above list should be filled by your xml parser. hope

Re: [android-developers] Re: webservice response parsed data

2012-01-10 Thread arun kumar
hey thanks for reply ArrayAdapterString adapter = new ArrayAdapterString(this, android.R.layout.simple_list_item_1,items); if i add like that am getting the below error... The constructor ArrayAdapterString(Year, int, int, ArrayListItemStructure) is undefined On Tue, Jan 10, 2012 at

Re: [android-developers] Re: webservice response parsed data

2012-01-10 Thread Mukesh Srivastav
Arun, fill your items with the data. On Tue, Jan 10, 2012 at 3:59 PM, arun kumar arun.kata...@gmail.com wrote: hey thanks for reply ArrayAdapterString adapter = new ArrayAdapterString(this, android.R.layout.simple_list_item_1,items); if i add like that am getting the below