我目前有一个ListView,它接受一个字符串数组。它是按以下方式创建的(在onCreate()方法中):
private ArrayAdapter<String> adapter;
String[] list = getResources().getStringArray(R.array.ingredients_array);
lv = (ListView)findViewById(R.id.itemList1);
adapter =new ArrayAdapter<String>(this,R.layout.list_view_format2,R.id.list_content2,list);
lv.setAdapter(adapter);
R.layout.list_view_format2:自定义ListView格式。它包含ImageView和TextView R.id.list_content2:R.id.list_view_format2
中文本视图的ID我想动态访问ListView的每个子节点,并将文本(TextView)与字符串进行比较。稍后,我想根据搜索修改与子项关联的图像(ImageView)。你能帮帮我吗?我搜索了很多,但我找不到任何成功。