在Android Times Square日历视图中动态设置单元格高亮显示颜色

在Android Times Square日历视图中动态设置单元格高亮显示颜色,android,android-calendar,calendarview,Android,Android Calendar,Calendarview,我使用的是可自定义的日历视图。我想用不同的颜色突出显示两组日期。现在,我可以使用以下xml格式,使用一种颜色高亮显示两个集合中的日期 <color name="calendar_highlighted_day_bg">#00A593</color> #00A593 日历类 List<DateTime> set1 = new List<DateTime>{date1, date2, date3}; List<DateTi

我使用的是可自定义的日历视图。我想用不同的颜色突出显示两组日期。现在,我可以使用以下xml格式,使用一种颜色高亮显示两个集合中的日期

  <color name="calendar_highlighted_day_bg">#00A593</color>
#00A593
日历类

    List<DateTime> set1 = new List<DateTime>{date1, date2, date3};
    List<DateTime> set2 = new List<DateTime>{date4, date5, date6};
calendarView.HighlightDates(set1);
calendarView.HighlightDates(set2);
List set1=新列表{date1,date2,date3};
List set2=新列表{date4,date5,date6};
calendarView.HighlightDates(set1);
calendarView.HighlightDates(set2);
如何将不同的颜色高光应用于set2

感谢您的帮助。

请使用下面的代码

主要活动

 GridView grid;
ImageView left,right;
TextView mon,yr;
MyCalendarAdapter adapter2;
ArrayList<String> weeks = new ArrayList<>();
ArrayList<Integer> calendars = new ArrayList<>();
String[] months= {"JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTOBER",
"NOVEMBER","DECEMBER"};
private int month,year;
Date d;
Calendar c;
private String dayOfTheWeek;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_attendance);
    empId = getIntent().getExtras().getString("EmpID");

    weeks.add("SUN");
    weeks.add("MON");
    weeks.add("TUE");
    weeks.add("WED");
    weeks.add("THU");
    weeks.add("FRI");
    weeks.add("SAT");

// add day of month you want to highlight
    calendars.add(5);
    calendars.add(10);
    calendars.add(25);
    grid =  findViewById(R.id.grid);
    left =  findViewById(R.id.left);
    right =  findViewById(R.id.right);
    mon =  findViewById(R.id.mon);
    yr =  findViewById(R.id.yr);



    c = Calendar.getInstance();
     month = c.get(Calendar.MONTH);
     year = c.get(Calendar.YEAR);

    final SimpleDateFormat sdf = new SimpleDateFormat("EEE");
     d = new Date();
     d.setDate(1);
     dayOfTheWeek = sdf.format(d).toUpperCase();
    Log.d("FIRSTDAY",""+dayOfTheWeek);
    getAttendance(String.valueOf(year), String.format("%02d",(month+1)));
    adapter2= new MyCalendarAdapter(c,weeks.indexOf(dayOfTheWeek),calendars);
    grid.setAdapter(adapter2);
    mon.setText(months[month]);
    yr.setText(""+year);

    left.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            calendars.clear();
            if(month==0)
            {
                month=11;
                year--;
            }
            else {
                month--;
            }
            d.setMonth(month);
            d.setYear(year);
            c.set(Calendar.MONTH,month);
            c.set(Calendar.YEAR,year);
            mon.setText(months[month]);
            yr.setText(""+year);
            dayOfTheWeek = sdf.format(d).toUpperCase();
            Log.d("FIRSTDAY",""+dayOfTheWeek);
            int w= weeks.indexOf(dayOfTheWeek);
            if(w==0)
            {
                adapter2= new MyCalendarAdapter(c,6,calendars);
            }
            else {
                adapter2= new MyCalendarAdapter(c,w-1,calendars);
            }
            grid.setAdapter(adapter2);
            getAttendance(String.valueOf(year), String.format("%02d",(month+1)));
        }
    });

    right.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            calendars.clear();
            if(month==11)
            {
                month=0;
                year++;
            }
            else {
                month++;
            }

            d.setMonth(month);
            d.setYear(year);
            c.set(Calendar.MONTH,month);
            c.set(Calendar.YEAR,year);
            mon.setText(months[month]);
            yr.setText(""+year);
            dayOfTheWeek = sdf.format(d).toUpperCase();
            Log.d("FIRSTDAY",""+dayOfTheWeek);
            int w= weeks.indexOf(dayOfTheWeek);
            if(w==0)
            {
                adapter2= new MyCalendarAdapter(c,6,calendars);
            }
            else {
                adapter2= new MyCalendarAdapter(c,w-1,calendars);
            }
            grid.setAdapter(adapter2);
            getAttendance(String.valueOf(year),String.format("%02d",(month+1)));
        }
    });

}
GridView网格;
图像视图左、右;
TextView mon,yr;
MyCalendarAdapter2;
ArrayList weeks=新建ArrayList();
ArrayList日历=新建ArrayList();
字符串[]个月={“一月”、“二月”、“三月”、“四月”、“五月”、“六月”、“七月”、“八月”、“九月”、“十月”,
“11月”、“12月”};
私人int月,年;
日期d;
日历c;
星期一的私人字符串;
@凌驾
创建时受保护的void(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity\u考勤);
empId=getIntent().getExtras().getString(“empId”);
周。添加(“太阳”);
周。添加(“周一”);
周。添加(“星期二”);
周。添加(“星期三”);
周。添加(“THU”);
周。添加(“星期五”);
周。添加(“SAT”);
//添加要突出显示的月份的日期
增加日历(5);
增加日历(10);
增加日历(25);
网格=findViewById(R.id.grid);
左=findViewById(R.id.left);
右=findviewbyd(R.id.right);
mon=findviewbyd(R.id.mon);
yr=findViewById(R.id.yr);
c=Calendar.getInstance();
月=c.get(日历月);
年份=c.get(日历年);
最终简化格式sdf=新简化格式(“EEE”);
d=新日期();
d、 设定日期(1);
DayOfWeek=sdf.format(d.toUpperCase();
Log.d(“第一天”和“+DayOfWeek”);
GetAttention(String.valueOf(year),String.format(“%02d”,month+1));
adapter2=新的MyCalendarAdapter(c,weeks.indexOf(DayOfWeek),日历);
网格设置适配器(适配器2);
mon.setText(月[月]);
第二年(“+年);
left.setOnClickListener(新视图.OnClickListener(){
@凌驾
公共void onClick(视图v){
日历;
如果(月份==0)
{
月=11;
年--;
}
否则{
月--;
}
d、 设定月(月);
d、 设定年份(年);
c、 设置(日历、月份、月份);
c、 设置(日历、年份、年份);
mon.setText(月[月]);
第二年(“+年);
DayOfWeek=sdf.format(d.toUpperCase();
Log.d(“第一天”和“+DayOfWeek”);
int w=周数。indexOf(星期几);
如果(w==0)
{
adapter2=新的MyCalendarAdapter(c、6、日历);
}
否则{
adapter2=新的MyCalendarAdapter(c、w-1、日历);
}
网格设置适配器(适配器2);
GetAttention(String.valueOf(year),String.format(“%02d”,month+1));
}
});
right.setOnClickListener(新视图.OnClickListener(){
@凌驾
公共void onClick(视图v){
日历;
如果(月=11)
{
月份=0;
年份++;
}
否则{
月份++;
}
d、 设定月(月);
d、 设定年份(年);
c、 设置(日历、月份、月份);
c、 设置(日历、年份、年份);
mon.setText(月[月]);
第二年(“+年);
DayOfWeek=sdf.format(d.toUpperCase();
Log.d(“第一天”和“+DayOfWeek”);
int w=周数。indexOf(星期几);
如果(w==0)
{
adapter2=新的MyCalendarAdapter(c、6、日历);
}
否则{
adapter2=新的MyCalendarAdapter(c、w-1、日历);
}
网格设置适配器(适配器2);
GetAttention(String.valueOf(year),String.format(“%02d”,month+1));
}
});
}
activity_main.xml


创建类MyCalendarAdapter

导入android.content.Context;
导入android.graphics.Typeface;
导入android.util.Log;
导入android.view.LayoutInflater;
导入android.view.view;
导入android.view.ViewGroup;
导入android.widget.BaseAdapter;
导入android.widget.TextView;
导入com.sixsquare.sams.R;
导入java.util.ArrayList;
导入java.util.Calendar;
公共类MyCalendarAdapter扩展了BaseAdapter{
日历c;
ArrayList日历;
int-ct;
公共MyCalendarAdapter(日历c、int-ct、ArrayList日历){
这个.c=c;
这个.ct=ct;
这个。日历=日历;
Log.d(“第一天”,即“+ct”);
}
@凌驾
public int getCount(){
int x=getMonthDays(日历月)+1,c.get(日历年))+ct;
//Log.d(“第一天”,即“+x”);
返回x;
}
@凌驾
公共对象getItem(int位置){
返回c;
}
@凌驾
公共长getItemId(int位置){
返回位置;
}
@凌驾
公共视图getView(INTP、视图转换视图、视图组父视图){
LayoutInflater mLayoutInflater=(LayoutInflater)parent.getContext().getSystemService(Context.LAYOUT\u INFLATER\u SERVICE);
视图v=mLayoutInflater.flate(R.layout.my_日历,父项,false);
TextView text=v.findviewbyd(R.id.text);
text.setTypeface(Typeface.createFromAsset(parent.getContext().getAssets()),
“fonts/fontastique.ttf”);
int位置=p+1-ct;
如果(位置>0){
text.setText(“+位置);
if(日历包含(位置))
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@drawable/app_bg"
<LinearLayout
    android:paddingTop="@dimen/_8sdp"
    android:paddingBottom="@dimen/_40sdp"
    android:paddingRight="@dimen/_14sdp"
    android:paddingLeft="@dimen/_16sdp"
    android:background="@drawable/calendar_bg"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
   >
    <LinearLayout
       android:background="@color/colorPrimary"
       android:gravity="center"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="@dimen/_40sdp"
        >
        <ImageView
            android:id="@+id/left"
            android:padding="@dimen/_8sdp"
            android:src="@drawable/left"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <LinearLayout
            android:gravity="center"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="horizontal">
            <com.sixsquare.sams.utils.CalendarText
                android:paddingRight="@dimen/_5sdp"
                android:id="@+id/mon"
                android:gravity="center_vertical|right"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:textColor="@color/white"
                android:textSize="@dimen/_14sdp"
                android:textStyle="bold"
                android:text=""/>
            <com.sixsquare.sams.utils.CalendarText
                android:paddingLeft="@dimen/_5sdp"
                android:id="@+id/yr"
                android:gravity="center_vertical"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:textColor="@color/white"
                android:textSize="@dimen/_14sdp"
                android:textStyle="bold"
                android:text=""/>
        </LinearLayout>

        <ImageView
            android:id="@+id/right"
            android:padding="@dimen/_8sdp"
            android:src="@drawable/right"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>
    <LinearLayout
        android:paddingTop="@dimen/_5sdp"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
       >
        <com.sixsquare.sams.utils.CalendarText
            android:gravity="center"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:textColor="@color/blue"
            android:textSize="@dimen/_14sdp"
            android:textStyle="bold"
            android:text="SUN"/>
        <com.sixsquare.sams.utils.CalendarText
            android:gravity="center"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:textColor="@color/blue"
            android:textSize="@dimen/_14sdp"
            android:textStyle="bold"
            android:text="MON"/>
        <com.sixsquare.sams.utils.CalendarText
            android:gravity="center"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:textColor="@color/blue"
            android:textSize="@dimen/_14sdp"
            android:textStyle="bold"
            android:text="TUE"/>
        <com.sixsquare.sams.utils.CalendarText
            android:gravity="center"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:textColor="@color/blue"
            android:textSize="@dimen/_14sdp"
            android:textStyle="bold"
            android:text="WED"/>
        <com.sixsquare.sams.utils.CalendarText
            android:gravity="center"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:textColor="@color/blue"
            android:textSize="@dimen/_14sdp"
            android:textStyle="bold"
            android:text="THU"/>
        <com.sixsquare.sams.utils.CalendarText
            android:gravity="center"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:textColor="@color/blue"
            android:textSize="@dimen/_14sdp"
            android:textStyle="bold"
            android:text="FRI"/>
        <com.sixsquare.sams.utils.CalendarText
            android:gravity="center"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:textColor="@color/blue"
            android:textSize="@dimen/_14sdp"
            android:textStyle="bold"
            android:text="SAT"/>
    </LinearLayout>
    <GridView
        android:padding="@dimen/_5sdp"
        android:id="@+id/grid"
        android:numColumns="7"
        android:layout_weight="1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></GridView>
    <!--<android.support.v4.view.ViewPager-->

        <!--android:id="@+id/pager"-->
        <!--android:layout_width="match_parent"-->
        <!--android:layout_height="match_parent"-->
        <!--android:layout_weight="1"></android.support.v4.view.ViewPager>-->
</LinearLayout>
        import android.content.Context;
    import android.graphics.Typeface;
    import android.util.Log;
    import android.view.LayoutInflater;
    import android.view.View;
    import android.view.ViewGroup;
    import android.widget.BaseAdapter;
    import android.widget.TextView;
    import com.sixsquare.sams.R;
    import java.util.ArrayList;
    import java.util.Calendar;

public class MyCalendarAdapter extends BaseAdapter {
   Calendar c;
    ArrayList<Integer> calendars;
    int ct;
    public MyCalendarAdapter(Calendar c,int ct,ArrayList<Integer> calendars) {
        this.c = c;
        this.ct= ct;
        this.calendars= calendars;
        Log.d("FIRSTDAY",""+ct);
    }

    @Override
    public int getCount() {

        int x=getMonthDays(c.get(Calendar.MONTH)+1,c.get(Calendar.YEAR))+ct;
//        Log.d("FIRSTDAY",""+x);
        return x;
    }

    @Override
    public Object getItem(int position) {
        return c;
    }

    @Override
    public long getItemId(int position) {
        return position;
    }

    @Override
    public View getView(int p, View convertView, ViewGroup parent) {
        LayoutInflater mLayoutInflater = (LayoutInflater) parent.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View v = mLayoutInflater.inflate(R.layout.my_calendar, parent, false);
        TextView text = v.findViewById(R.id.text);
        text.setTypeface(Typeface.createFromAsset(parent.getContext().getAssets(),
                "fonts/fontastique.ttf"));
        int position= p+1-ct;
        if(position>0) {

            text.setText("" + position);
            if(calendars.contains(position))
            {
                text.setTextColor(parent.getResources().getColor(R.color.white));
                text.setBackgroundResource(R.drawable.circular_shape);
            }
        }
        return v;
    }
    public static int getMonthDays(int month, int year) {
        int daysInMonth ;
        if (month == 4 || month == 6 || month == 9 || month == 11) {
            daysInMonth = 30;
        }
        else {
            if (month == 2) {
                daysInMonth = (year % 4 == 0) ? 29 : 28;
            } else {
                daysInMonth = 31;
            }
        }
//        Log.d("FIRSTDAY","days "+daysInMonth);
        return daysInMonth;
    }
}
  <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:gravity="center"
    android:padding="@dimen/_3sdp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <TextView
        android:id="@+id/text"
        android:textSize="@dimen/_14sdp"
        android:gravity="center"
        android:textStyle="bold"
        android:textColor="@color/black"
        android:layout_width="@dimen/_32sdp"
        android:layout_height="@dimen/_32sdp"/>
</LinearLayout>