如何仅更改列表视图内容而不更改项目列表

时间:2013-02-08 11:41:19

标签: android

我有一个列表视图,其中每个列表项都有一个图像和4个文本视图。我想只更改2个文本视图而不更改列表和项列表。 这些文本视图每秒都会更改一次。 在android中有可能吗?

1 个答案:

答案 0 :(得分:0)

您可以像这样更新listView的文本项:

private void updateText(int index){
View v = ListView.getChildAt(index);

TextView updatedText = (TextView) v.findViewById(R.id.txt_view);
updatedText .setText("changed Text");

}