我已经为自己构建了一个包含列表的应用程序。到目前为止,我一直使用 aSimpleAdapter
来填充列表,但我决定移至ArrayAdapter
. 问题是,我不知道如何以ArrayAdapter
同样的方式填充!这是我使用我的方式SimpleAdapter
:
adapter=new SimpleAdapter(this, listItems, R.layout.custom_row_view, new String[]{"name", "current", "reset"}, new int[] {R.id.text1, R.id.text2, R.id.text3});
我的 listItems 变量实际上是这样设置的:
static final ArrayList<HashMap<String,String>> listItems = new ArrayList<HashMap<String,String>>();
现在,当尝试使用ArrayAdapter
具有相同参数的构造函数时,它给了我一个错误。怎么可能做到这一点?