1
ButtonViewとTextViewを持つListViewがあり、ButtonをクリックするとTextViewのテキストを変更したい。私はクリックを処理し、ボタンをクリックするとandroid:onClick="myClickHandler"
私はTextViewのテキスト値を変更しますが、問題はListViewをスクロールしてListViewの他のセルに同じテキストが見つかった場合です。どうすればこの問題を解決できますか?
tanxたくさん。
これはlistadapterとリストビューアダプタに同時にすべての変更を更新
Buttonをクリックすると、ListViewのTextViewのテキストをどのように変更できますか?
public void myClickHandler(View v)
{
//get the row the clicked button is in
LinearLayout vwParentRow = (LinearLayout)v.getParent();
TextView child = (TextView)vwParentRow.getChildAt(1);
child.setText("bma bla");
}
答えはtanxです。私はあなたの解決策を試みます。 – aminovic09