Home
last modified time | relevance | path

Searched refs:datePickerDialog (Results 1 – 3 of 3) sorted by relevance

/packages/modules/HealthFitness/tests/cts/src/android/healthconnect/cts/ui/widget/
DDatePickerDialogTest.kt38 val datePickerDialog = DatePickerDialog(context) in testConstructor() constant
39 assertThat(datePickerDialog.datePicker).isNotNull() in testConstructor()
46 val datePickerDialog = DatePickerDialog(context) in testUpdateDate_shouldUpdateTheListenerPassedInto() constant
47 datePickerDialog.setOnDateSetListener(mockCallBack) in testUpdateDate_shouldUpdateTheListenerPassedInto()
49 datePickerDialog.updateDate(/* year= */ 2019, /* month= */ 1, /* dayOfMonth= */ 1) in testUpdateDate_shouldUpdateTheListenerPassedInto()
50 datePickerDialog.onClick(datePickerDialog, DialogInterface.BUTTON_POSITIVE) in testUpdateDate_shouldUpdateTheListenerPassedInto()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/utils/
DDatePickerFactory.kt25 val datePickerDialog = DatePickerDialog(context) in create() constant
26 val datePicker = datePickerDialog.datePicker in create()
36 return datePickerDialog in create()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/
DDateNavigationView.kt120 val datePickerDialog = DatePickerFactory.create(context, selectedDate, maxDate) in <lambda>() constant
121 setMaxDate(datePickerDialog.datePicker.maxDate.toInstant()) in <lambda>()
123 datePickerDialog.setOnDateSetListener { _, year, month, day -> in <lambda>()
129 datePickerDialog.show() in <lambda>()