How to display date picker for android with only month and year fields?

前端 未结 8 2146
后悔当初
后悔当初 2020-12-03 01:31

i want to disable the day selection option on the android sdk date picker. any easy xml configuration would be the best

8条回答
  •  隐瞒了意图╮
    2020-12-03 02:00

    For Hiding Day :

     datePicker.findViewById(Resources.getSystem().getIdentifier("day", "id", "android")).setVisibility(View.GONE);
    

    &

    For hiding Month :

    datePicker.findViewById(Resources.getSystem().getIdentifier("month", "id", "android")).setVisibility(View.GONE);
    

提交回复
热议问题