如何使用自定义列表视图

时间:2010-11-25 07:57:20

标签: android

您好 我如何使用自定义列表视图与textview和imageview.i尝试以下代码

ListView lv = (ListView) findViewById(R.id.ListView01);
  this.getListView().setCacheColorHint(00000000);
  String[] data = new String[] { "aac", "xsfdf", "dsf", "frgr" };
  int[] to = new int[] { R.id.TextView01};
   SimpleAdapter adapter = new SimpleAdapter(
           this,null,R.layout.newimage,data, to);
    setListAdapter(adapter);

但它不起作用。 帮我。 感谢名单

1 个答案:

答案 0 :(得分:0)

这不是使用自定义列表视图的方式,这里你需要创建自定义适配器
请参阅此example