如何将另一个适配器放入我的自定义适配器(来自一个对象的信息)

时间:2013-07-16 13:50:58

标签: android android-layout android-listview android-arrayadapter

如何填充已在自定义适配器行中的listview。这是正确的方法吗?

我有一个组织对象。这个组织可以有更多的联系。

所以我想创建一个例如,一个布局,顶部是组织的名称,然后是其下的联系人的名称。

获取组织对象并将其放入我的自定义适配器并显示名称是没有问题的。 但是如何在该行布局中填充listview?我真的没有在自定义适配器中获得新的ArrayAdapter构造函数的上下文参数。它需要什么?

public class ContactAdapter extends ArrayAdapter<Organization> {
Context context;
int layoutResourceId;
ArrayList<Organization> data = null;

public ContactAdapter(Context context, int layoutResourceId, ArrayList<Organization> data) {
    super(context, layoutResourceId, data);
    this.context = context;
    this.layoutResourceId = layoutResourceId;
    this.data = data;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    View row = convertView;
    OrganizationHolder holder = null;

    if (row == null) {
        LayoutInflater inflater = ((Activity)context).getLayoutInflater();
        row = inflater.inflate(layoutResourceId, parent,false);

        holder = new OrganizationHolder();
        holder.tvOrgName = (TextView)row.findViewById(R.id.tvOrgName);
        holder.LvContacts = (ListView)row.findViewById(R.id.LvContacts);

        row.setTag(holder);

    } else {
        holder = (OrganizationHolder) row.getTag();
    }

    Organization org = data.get(position);
    ArrayList<String> contacts = new ArrayList<String>();
    for (Contact c : org.getContacts()) {
        contacts.add(c.getName());
    }
    Log.i("List",""+contacts);
    ArrayAdapter<String> contactsadapter = new ArrayAdapter<String>(??,android.R.layout.simple_list_item_1,contacts);
    holder.LvContacts.setAdapter(contactsadapter);
    holder.tvOrgName.setText(org.getName());

    return row; 
}

static class OrganizationHolder {
    TextView tvOrgName;
    ListView LvContacts;
    Button btnDetails;
}

2 个答案:

答案 0 :(得分:2)

你不应该将ListView放在另一个ListView的行中。

您可以考虑使用ExpandableListView和子类BaseExpandableListAdapter代替您现在使用的类。将组织用作“组”视图,将联系人用作“子视图”。

如果您不想要可扩展列表并且绝对需要一个适配器中的所有信息,您可以形成一个数据结构,该数据结构是组织的映射(或列表),每个组织都有一个联系人列表。然后,您将编写一个自定义适配器实现来使用它。

public class MyAdapter extends BaseAdapter {
    private List<Organization> mList;
    private LayoutInflater mInflater;
    private int mCount;

    public MyAdapter(Context context, List<Organization> list) {
        mInflater = LayoutInflater.from(context);
        mLIst = list;
        mCount = countItems();
    }

    private int countItems() {
        int count = 0;
        if (list != null) {
            for (Organization org : organizations) {
                count++; // org
                List<Contact> contacts = org.getContacts();
                if (contacts != null) count += contacts.size()); // contacts
            }
        }
        return count;
    }

    public int getCount() {
        return mCount;
    }

    public Object getItem(int position) {
        for (Organization org : orgnizations) {
            if (position == 0) {
                return org;
            }
            position--;
            List<Contact> contacts = org.getContacts();
            if (contacts != null) {
                int size = contacts.size();
                if (position >= size) {
                    position -= size;
                } else {
                    return contacts.get(position);
                }
            }
        }
        // not found
        throw new IndexOutOfBoundsException(); // or some other exception
    }

    // other methods omitted for brevity
}

我离开了getView()方法,但希望你可以自己解决这个问题。如果您的行需要根据显示的数据(组织或联系人)看起来不同,您还应该实施getItemViewType()getItemViewTypeCount()

我建议您观看名为The World of ListView

的视频

答案 1 :(得分:1)

我用过((Activity)上下文)。它现在正在运作!

我仍然不知道它的真正含义或含义。但我很高兴它现在正在运作。我仍然想知道这是否是正确的做法。