0

我正在开发一个应用程序,用户可以在其中查看带有名称的列表,当他单击一个时,会弹出另一个活动,其中包含有关所选配置文件的更多详细信息。我有一个列表视图。我使用以下代码创建它:

listContacts = (ListView) findViewById(R.id.listContacts);
        data = new ArrayList<HashMap<String, String>>();

        db = new DatabaseHandler(this);
        List<Contact> contacts = db.getAllContacts();
        List<String> names = new ArrayList<>();
        List<String> sex = new ArrayList<>();
        List<String> age = new ArrayList<>();
        List<Integer> id = new ArrayList<>();
        List<String> sexnage = new ArrayList<>();

        for (Contact cn : contacts) {

            names.add(cn.getName() + " " + cn.getSurname());

            sex.add(cn.getSex());
            age.add(cn.getAge());
            id.add(cn.getID());
            sexnage.add(cn.getSex() + " " + cn.getAge());
        }

        titleArray = new String[names.size()];
        titleArray = names.toArray(titleArray);

        subItemArray = new String[sexnage.size()];
        subItemArray = sexnage.toArray(subItemArray);

        for(int i=0;i<titleArray.length;i++){
            HashMap<String,String> datum = new HashMap<String, String>();
            datum.put("Name", titleArray[i]);
            datum.put("Sex and Age", subItemArray[i]);
            data.add(datum);
        }


        SimpleAdapter subAdapter = new SimpleAdapter(this, data, android.R.layout.simple_list_item_2,
                new String[] {"Name", "Sex and Age"}, new int[]
                {android.R.id.text1, android.R.id.text2});
        listContacts.setAdapter(subAdapter);

如何设置列表中每个元素的 ID,使其与数据库一对应?

4

1 回答 1

0

使用SimpleCursorAdapter作为列表视图适配器。

于 2016-01-09T19:18:35.197 回答