Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My android app needs to populate the ListView using the data from an ArrayList. I have trouble doing it this. Can someone please help me with the code?

share|improve this question

3 Answers

up vote 24 down vote accepted

You need to do it through an ArrayAdapter which will adapt your ArrayList (or any other collection) to your items in your layout (ListView, Spinner etc.).

This is what the Android developer guide says:

A ListAdapter that manages a ListView backed by an array of arbitrary objects. By default this class expects that the provided resource id references a single TextView. If you want to use a more complex layout, use the constructors that also takes a field id. That field id should reference a TextView in the larger layout resource. However the TextView is referenced, it will be filled with the toString() of each object in the array. You can add lists or arrays of custom objects. Override the toString() method of your objects to determine what text will be displayed for the item in the list. To use something other than TextViews for the array display, for instance, ImageViews, or to have some of data besides toString() results fill the views, override getView(int, View, ViewGroup) to return the type of view you want.

So your code should look like:

public class YourActivity extends Activity 
{
    private ListView lv;
    public void onCreate(Bundle saveInstanceState) {
          setContentView(R.layout.your_layout);
         lv = (ListView) findViewById(R.id.your_list_view_id);
         // Instanciating an array list (you don't need to do this, you already have yours)
         ArrayList<String> your_array_list = new ArrayList<String>();
         your_array_list.add("foo");
         your_array_list.add("bar");
         // This is the array adapter, it takes the context of the activity as a first // parameter, the type of list view as a second parameter and your array as a third parameter
         ArrayAdapter<String> arrayAdapter =      
         new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, your_array_list);
         lv.setAdapter(arrayAdapter); 
    }
}
share|improve this answer
1  
@ Amokrane Chentir: i could'nt get u ..... can u pls type the full program .... thanks – kAnNaN Feb 22 '11 at 8:50
@KanNaN: Sure, can you see if my edit is more explicit to you? – Amokrane Chentir Feb 22 '11 at 11:38
@ Amokrane Chentir: I think that the "setContentView" method must be called before "findViewById" or else no ListView will be found. – Petru Jun 26 '12 at 20:36
@Petru You are absolutely right! Thank you for noticing it, that's corrected now! – Amokrane Chentir Jun 27 '12 at 3:43

Step by step tutorial - http://developer.android.com/resources/tutorials/views/hello-listview.html

Also look up ArrayAdapter interface:

ArrayAdapter(Context context, int textViewResourceId, List<T> objects)
share|improve this answer
  public class Example extends Activity
{
private ListView lv;
ArrayList<String> arrlist=new ArrayList<String>();
//let me assume that you are putting the values in this arraylist
//Now convert your arraylist to array

//You will get an exmaple here

//http://www.java-tips.org/java-se-tips/java.lang/how-to-convert-an-arraylist-into-an-array.html 

private String arr[]=convert(arrlist);
@Override
public void onCreate(Bundle bun)
{
super.onCreate(bun);
setContentView(R.layout.main);
lv=(ListView)findViewById(R.id.lv);
lv.setAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1 , arr));
}
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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