public class ActivityForShow extends Activity
{
//have a ListView layout
ListView.setAdapter(SingleRowAdapter);
}
public class SingleRowAdapter extends ArrayAdapter
{
//every row has a CheckBox ,a TextView and a Button
}
CheckBoxとButtonイベントを処理し、背景作業を行い、結果をダイアログに表示します。
ActivityForShowでチェックボックスとボタンの値を取得する方法は?
findViewById()は例外を発生させます。カスタマイズされたListViewのイベントハンドル
しかし、SingleRowAdapterクラスでは、ダイアログを作成できません。 – outcast