[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

Monthlist
item
MonthnameFEB/Monthname
/item
MonthnameMAR/Monthname
/item
itemMonthnameAPRI/Monthname
/item
item
MonthnameMAY/Monthname
/item

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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 you understand.

Warm Regards,
*Mukesh Kumar*,
Android Consultant/Freelancer,
India,Hyderabad.


On Tue, Jan 10, 2012 at 3:29 PM, arun kumar arun.kata...@gmail.com wrote:



 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

 Monthlist
 item
 MonthnameFEB/Monthname
 /item
 MonthnameMAR/Monthname
 /item
 itemMonthnameAPRI/Monthname
 /item
 item
 MonthnameMAY/Monthname
 /item

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




--

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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 3:38 PM, Mukesh Srivastav mukicha...@gmail.comwrote:

 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 you understand.

 Warm Regards,
 *Mukesh Kumar*,
 Android Consultant/Freelancer,
 India,Hyderabad.


  On Tue, Jan 10, 2012 at 3:29 PM, arun kumar arun.kata...@gmail.comwrote:



 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

 Monthlist
 item
 MonthnameFEB/Monthname
 /item
 MonthnameMAR/Monthname
 /item
 itemMonthnameAPRI/Monthname
 /item
 item
 MonthnameMAY/Monthname
 /item

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




 --


 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

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 error...


 The constructor ArrayAdapterString(Year, int, int,
 ArrayListItemStructure) is undefined
 On Tue, Jan 10, 2012 at 3:38 PM, Mukesh Srivastav mukicha...@gmail.comwrote:

 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 you understand.

 Warm Regards,
 *Mukesh Kumar*,
 Android Consultant/Freelancer,
 India,Hyderabad.


  On Tue, Jan 10, 2012 at 3:29 PM, arun kumar arun.kata...@gmail.comwrote:



 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

 Monthlist
 item
 MonthnameFEB/Monthname
 /item
 MonthnameMAR/Monthname
 /item
 itemMonthnameAPRI/Monthname
 /item
 item
 MonthnameMAY/Monthname
 /item

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




 --


 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
Warm Regards,
*Mukesh Kumar*,
Android Consultant/Freelancer,
India,Hyderabad.

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en