tags:

views:

6

answers:

0

HI All,

I have i list view in each row I have three textviews. and I m assigning values to the textviews through array.

Now I want to get the selected items in a list view row.(Because I have three items in row.) Below code is giving me the object. with three values in it, but I'm not able to make it individual items.

Response of object:

Object o=      {**News_Descr**=Fiat claims Linea T-jet has 13 new features and seven leading  equipments like more powerful engine, fuel efficiency and safety features., **News_date**=2010-10-08T20:07:13.277, **News_Title**=Fiat launches Linea T-Jet, T Jet Plus priced at Rs 8.55 - 8.99 lakh}

Code

protected void onListItemClick(ListView l, View v, int position, long id) {  
        super.onListItemClick(l, v, position, id);  
        Object o = this.getListAdapter().getItem(position);
        String Selected = o.toString();

Pls anybody help me in this case. i want to get the values of three items(News_Descr, News_date,News_date)