TextView
をリアルタイムで更新する際に問題が発生しています。TextView
カスタム アダプタを使用してのListView
をリアルタイムで更新したいと考えています。JSON メッセージを受信するソケット I/O ハンドラがあります。この JSON を解析し、そのテキストを特定のリスト行にsetText()
. ListView
その行のインデックスを取得して更新するにはどうすればよいTextView
ですか?
responseid=object.getString("ResponseID");
if(responseid!=null){
for(int j=0;j<countryList.size();j++){
//If the countryList row match then i want to update the textView of that particular row
if(countryList.get(j).getName().equals(caseid)) {
int oldcount = Integer.parseInt((dataAdapter.findViewById(R.id.replycount)).getText().toString());
int total=oldcount+1;
(dataAdapter.findViewById(R.id.replycount)).setText(Integer.toString(total));
dataAdapter.notifyDataSetChanged();
}
}
}
これが私の解決策です:
for(int j=0;j<countryList.size();j++)
{
if(countryList.get(j).getName().equals(caseid))
{
String oldcount = countryList.get(j).getCount();
int oldcountint = Integer.parseInt(oldcount);
int newcount = oldcountint + 1;
countryList.get(j).setCount(Integer.toString(newcount));
dataAdapter.notifyDataSetChanged();
break;
}
}