我一直试图从网站上找到任何教程或参考资料,以帮助我一个星期,链接(link1; link2)告诉我要创建一个ListViewAdapter
处理它,但我现在不知道如何使用,
所以有一种方法可以在ratingBar
中保存ListView
的每个值,而无需自定义适配器?
如果答案是肯定的,请给我一些代码,以便在Log.d
上查看!
这是ListView
SimpleAdapter
的一些代码:
ListAdapter adapter = new SimpleAdapter(
Pertanyaan.this, contactList,
R.layout.list_pertanyaan, new String[]{"ask", "id"}, new int[]{R.id.ask, R.id.txtid});
但我无意将ratingBar
插入ListView
并将ratingBar
的值保存到simpleAdapter
任何建议或示例代码如何解决问题!