I have created a list activity calles as Category List to show a list of category dynamically from web by parsing an XML file. The XML file contains values "ID"(id of the particular category) and "title"(category name). So what I've done is, I've parsed the XML file and collected the ID and title to an ArrayList called categries using SAX parser.

In the list activity, I have a created a new string array and added the title of each category to it. The thing I want to do is to assign the category id to each category shown in the list view and to use the id to get the appropriate view for that category. Is there any way to assign an id to the each of the list items.

regards dj

link|improve this question

Check this out stackoverflow.com/questions/3492513 – Marcel Gheorghita Nov 26 '10 at 7:19
Hi Marcel Gheorghita, Thanks for ur help! The link is good but in my case, I m not saving the data to the sqlite database. I want to generate another XML file from web based on the ID of category clicked and to show the data based on that. – Dijo David Nov 26 '10 at 7:30
feedback

1 Answer

Introduce a JavaBean, and fill it:

class YourBean {
  private int id;
  private String title;
  // add get / set methods
}

Create the list and put it in a ArrayList ,then fill a Adapter with it.

Then, you can use an http://developer.android.com/reference/android/widget/ArrayAdapter.html and in your onClicked etc method use mAdapter.getItem(int). That's in very short words.

Take a look in the SDK examples.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.