I want to create a custom adapter for my list view. is there any article which can walk me through how to create one and how it works..

Thanks in advance

link|improve this question

1  
YES !!!! IN SDK SAMPLES – Selvin Nov 17 '11 at 11:50
feedback

4 Answers

up vote 2 down vote accepted
public class ListAdapter extends ArrayAdapter<Item> {

public ListAdapter(Context context, int textViewResourceId) {
    super(context, textViewResourceId);
    // TODO Auto-generated constructor stub
}

private List<Item> items;

public ListAdapter(Context context, int resource, List<Item> items) {

    super(context, resource, items);

    this.items = items;

}

@Override
public View getView(int position, View convertView, ViewGroup parent) {

    View v = convertView;

    if (v == null) {

        LayoutInflater vi;
        vi = LayoutInflater.from(getContext());
        v = vi.inflate(R.layout.itemlistrow, null);

    }

    Item p = items.get(position);

    if (p != null) {

        TextView tt = (TextView) v.findViewById(R.id.id);
        TextView tt1 = (TextView) v.findViewById(R.id.categoryId);
        TextView tt3 = (TextView) v.findViewById(R.id.description);

        if (tt != null) {
            tt.setText(p.getId());
        }
        if (tt1 != null) {

            tt1.setText(p.getCategory().getId());
        }
        if (tt3 != null) {

            tt3.setText(p.getDescription());
        }
    }

    return v;

}

}

this is class I had use for my project, you have to have a collection of your items which you want to display it, in my case its . You have to override View getView(int position, View convertView, ViewGroup parent) method. R.layout.itemlistrow -> which is a XML layout which defines the row of the ListView. check below.

<?xml version="1.0" encoding="utf-8"?>

<TableRow android:layout_width="fill_parent" android:id="@+id/TableRow01"
    android:layout_height="wrap_content">

    <TextView android:textColor="#FFFFFF" android:id="@+id/id"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:text="id" android:textStyle="bold" android:gravity="left"
        android:layout_weight="1" android:typeface="monospace"
        android:height="40sp" />
</TableRow>

<TableRow android:layout_height="wrap_content"
    android:layout_width="fill_parent">

    <TextView android:textColor="#FFFFFF" android:id="@+id/categoryId"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:text="categoryId" android:layout_weight="1" android:height="20sp" />

    <TextView android:layout_height="wrap_content"
        android:layout_width="fill_parent" android:layout_weight="1"
        android:textColor="#FFFFFF" android:gravity="right" android:id="@+id/description"
        android:text="description" android:height="20sp" />
</TableRow>

I hope you have the main activity with a ListView defined.

In your Activity class, you can do like this.

ListView yourListView = (ListView) findViewById(R.id.itemListView);

// get data from the table by the ListAdapter
ListAdapter customAdapter = new ListAdapter(this, R.layout.itemlistrow, List<yourItem>);

yourListView .setAdapter(customAdapter);

Hope this help, if you have any queries please ask..

link|improve this answer
Thanks for the code.. Can you explain the getView Method as in what should go into it ? – Harsha M V Nov 19 '11 at 8:29
feedback

You can take a look at this sample in the official ApiDemos. It shows how to extend BaseAdapter and apply it to a ListView. After that, just look at the reference for BaseAdapter and try to understand what each method does (including the inherited ones) and when/how to use it.

Also, Google is your friend :).

link|improve this answer
feedback

Google has an example called EfficientAdapter, which in my opinion is the best simple example of how to implement custom adapters. http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List14.html @CommonsWare has written a good explanation of the patterns used in the above example http://commonsware.com/Android/excerpt.pdf

link|improve this answer
feedback

check this link, in very simple via the convertView, we can get the layout of a row which will be displayed in listview(which is the parentView).`View v = convertView;

if (v == null) {

    LayoutInflater vi;
    vi = LayoutInflater.from(getContext());
    v = vi.inflate(R.layout.itemlistrow, null);

}`

using the position, you can get the objects of the List<Item>.

Item p = items.get(position);

after that we'll have to set the desired details of the object to the identified form widgets.

if (p != null) {

    TextView tt = (TextView) v.findViewById(R.id.id);
    TextView tt1 = (TextView) v.findViewById(R.id.categoryId);
    TextView tt3 = (TextView) v.findViewById(R.id.description);

    if (tt != null) {
        tt.setText(p.getId());
    }
    if (tt1 != null) {

        tt1.setText(p.getCategory().getId());
    }
    if (tt3 != null) {

        tt3.setText(p.getDescription());
    }
}

then it will return the constructed view which will be attached to the parentView(which is a ListView/GridView).

link|improve this answer
Thanks a lot.... – Harsha M V Nov 22 '11 at 10:03
1  
glad it helped. – Rakhita Nov 22 '11 at 10:33
feedback

Your Answer

 
or
required, but never shown

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