私はアンドロイドアプリケーションで作業しています。その中で、最初に webservice からのすべてのデータを保存し、後で db からデータをクエリして listview で更新する必要があります。
私のリストビュー項目には、チェックボックスとボタンが含まれています。ボタンまたはチェックボックスをクリックすると、正常に動作します(ログが表示されます)が、リストビューでボタンをクリックすると子アクティビティを開始する必要があります。
これは私のアダプタークラスです。
public class GuestListAdapter extends BaseAdapter{
Context context;
ArrayList<String > arrayListFirstValue;
ArrayList<String > arrayListSecondValue;
ArrayList<String > arrayListThirdValue;
public GuestListAdapter(Context mcontext, ArrayList<String> arrListFV,ArrayList<String> arrListSV,ArrayList<String> arrListGuestTV)
{
arrayListFirstValue =arrListFV;
arrayListSecondValue =arrLisSV;
arrayListThirdValue =arrListTV;
context = mcontext;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return arrayListFirstValue.size();
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return arrayListFirstValue.get(position);
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return position;
}
@Override
public View getView(int position, View view, ViewGroup parent) {
// TODO Auto-generated method stub
if (view == null) {
LayoutInflater inflater = LayoutInflater.from(parent.getContext());
view = inflater.inflate(R.layout.guest_list_item, parent, false);
}
TextView txtFirstValue = (TextView)view.findViewById(R.id.txt_firstname);
txtFirstValue .setText(arrayListFirstValue.get(position));
TextView txtSecondValue = (TextView)view.findViewById(R.id.txt_lastname);
txtSecondValue .setText(arrayListSecondValue.get(position));
TextView txtThirdValue = (TextView)view.findViewById(R.id.txt_guest_count);
txtThirdValue .setText(arrayListThirdValue.get(position));
Button btnInfo = (Button)view.findViewById(R.id.btn_info);
CheckBox checkBoxCheckins = (CheckBox)view.findViewById(R.id.checkBoxIsCheckedIn);
btnInfo.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
System.out.println("Adap button **********");
}
});
checkBoxCheckins.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
System.out.println("Adap checked **********");
}
});
return view;
}
}
最後に私の質問は、リストビューでボタンをクリックしたときに子アクティビティを開始する必要があるということです。これを達成する方法を教えてください。