从 android 中的日历视图获取星期几

Get the week day from a calendarview in android

我在我的项目中实现了一个calendarview,我可以得到星期几,月份和年份,但是我找不到任何方法来得到星期几,我的代码是这样的:

    view = new CalendarView(this);
    setContentView(view);


    view.setOnDateChangeListener(new OnDateChangeListener() {

        @Override
        public void onSelectedDayChange(CalendarView arg0, int year,
                int month, int dateb) { 

当我在日历中选择一天时,我需要得到星期几,我试图得到答案,但我找不到。

对不起我的英语。

您始终可以使用日历并通过从日历视图中获取的时间设置它:

Calendar selected = Calendar.getInstance();
selected.setTimeInMillis(view.getDate());
int dayOfWeek = selected.get(Calendar.DAY_OF_WEEK);

每个整数值对应一天中的一天,例如Calendar.TUESDAY = 3

希望对您有所帮助