アイテムがクリックされたときにDatePickerダイアログを開くListViewのonItemClickListenerがあります。
list.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
showDatePickerDialog(view);
}
});
public void showDatePickerDialog(View v) {
DialogFragment newFragment = new DatePickerFragment();
newFragment.show(getFragmentManager(), "datePicker");
}
DatePicker の日付が設定された後、データベースを更新し、ListView でクリックされた項目の日付を設定するために使用するonDateSetメソッドがあります。
public void onDateSet(DatePicker view, int year, int month, int day) {
...
dataSource.updateDate(adapter.getItemId(position), month + "/" + day + "/" + year);
...
}
データベースヘルパーが更新するレコードを認識できるように、クリックされた項目のListView 位置をonDateSetに渡すにはどうすればよいですか?
編集: DatePickerFragmentクラスは次のとおりです。
public static class DatePickerFragment extends DialogFragment
implements DatePickerDialog.OnDateSetListener {
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
// Use the current date as the default date in the picker
final Calendar c = Calendar.getInstance();
int year = c.get(Calendar.YEAR);
int month = c.get(Calendar.MONTH);
int day = c.get(Calendar.DAY_OF_MONTH);
// Create a new instance of DatePickerDialog and return it
return new DatePickerDialog(getActivity(), this, year, month, day);
}
public void onDateSet(DatePicker view, int year, int month, int day) {
...
dataSource.updateDate(adapter.getItemId(position), month + "/" + day + "/" + year);
...
}
}
ありがとう!