hi ena,

you have to create a custom adapter.

private class ShowCategory extends BaseAdapter {

//implement getView

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

//in here define your textBoxes and others
        ViewHolder holder = new ViewHolder();
holder.text = (TextView) convertView.findViewById(R.id.catName);
}

                class ViewHolder {
                        TextView text;
                        ImageView icon;
                }

}

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

Reply via email to