Android手机联系人数据库分析(2)

class ViewHolder {
        TextView name, note;
        TextView number, address;
        TextView group, company;
        TextView email, workTel;
        TextView fnumber;
    }
                                                                                                                                                                                                                                                                                                                                                                         
    class Item {
        String name;        // 姓名
        String number;      // 电话号码
        String group="";        // 群组
        String note;        // 备注
        String address;    // 家庭地址
        String fnumber;    // 家庭号码
        String company;    // 所在公司
        String workTel;    // 工作号码
        String email;      // 邮箱
    }

group = "" ,是因为某些人可能属于多个分组,为了在拼接字符串时不会有null所以赋予""

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/822ed5123805225e51677df34fe14910.html