android中各种适配器之SimpleAdapter使用

new SimpleAdapter(this, allPerson, R.layout.list,
    new String[] { "head", "name", "phone" }, new int[] {
      R.id.headImage, R.id.nameText, R.id.phoneText });

你可能感兴趣的:(android)