我有一个列表视图,其中每个列表项都有一个图像和4个文本视图。我想只更改2个文本视图而不更改列表和项列表。 这些文本视图每秒都会更改一次。 在android中有可能吗?
答案 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");
}