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所以赋予""
