禁用每周特定日期的Calendarview

时间:2015-09-21 19:19:44

标签: android calendar

我需要制作一份表格来预订餐厅

要选择预约日期,我认为最好使用CalendarView。但并非每家餐厅都在一周的所有日子里开放。但是只禁用特定日期。

我尝试了许多类似于CalendarView的库,因此您可以动态阻止餐厅关闭当天的特定日期。

所以

我需要一个日历视图,可以禁用周日,周二等日期......

对此英文版Google翻译感到抱歉。真的很抱歉

2 个答案:

答案 0 :(得分:0)

i have faced the same problem using custom calendar ,
i just overridden the function of adapter 


 @Override
    public boolean isEnabled(int position) {
         if(mySet.contains(position))
            return true;
        else
            return false;
    }


then i call the function int the adapter view 

 isEnabled(position);




befoer that tale Hashset and add the position which is displaying the calanderview 

           // mysetSize=set.size();
            //isEnabled(Integer.parseInt(gridvalue));
            Log.d(dayView.getTag()+"------1-------"+gridvalue,"-------"+position);
        } else if ((Integer.parseInt(gridvalue) < 7) && (position > 28)) {
            dayView.setTextColor(Color.WHITE);
            dayView.setClickable(false);
            dayView.setFocusable(false);
            Log.d("-------mySet------","-------"+mySet);
            Log.d(mysetSize+"-------28------"+gridvalue,"-------"+position);
            set.add(position);

        } else {
            // setting curent month's days in blue color.
            dayView.setTextColor(Color.DKGRAY);
            Log.d(dayView.getTag()+"-------current display post------","-------"+position);
            mySet.add(position);
        }

答案 1 :(得分:0)

使用此库ZCustomCalendar。您可以根据需要设置多种类型的天(禁用,忙碌,假期)。