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

前端 未结 8 2183
后悔当初
后悔当初 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 01:55

    I think It's the best solution

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

提交回复
热议问题