Android spinner with date picker, like Google Calendar app

后端 未结 4 2038
一生所求
一生所求 2020-12-04 13:28

I\'m trying to get a text box that looks like a spinner to activate a date picker dialog. This is done in both the Google Calendar app and the Contacts app (for birthdate) o

4条回答
  •  感情败类
    2020-12-04 14:00

    Twaddington's comment on his answer is actually the right approach. What you need is to create a text view and apply the style

    style="@android:style/Widget.DeviceDefault.Light.Spinner"
    

    Then you can create a click listener on the text view and use it to open a DatePickerDialog. That can be accomplished as shown here: https://stackoverflow.com/a/8127571/332738 (If you follow the example, remember to add a default constructor to DatePickerDialogFragment so that your app does not crash on rotate)

提交回复
热议问题