- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 Android Times Square用于可自定义的 CalendarView。我想突出显示两组不同颜色的日期。现在我可以在 xml 中使用以下代码仅用一种颜色突出显示两个集合中的日期
<color name="calendar_highlighted_day_bg">#00A593</color>
日历类
List<DateTime> set1 = new List<DateTime>{date1, date2, date3};
List<DateTime> set2 = new List<DateTime>{date4, date5, date6};
calendarView.HighlightDates(set1);
calendarView.HighlightDates(set2);
如何为 set2 应用不同的颜色突出显示?
感谢任何帮助。
最佳答案
使用下面的代码
在主 Activity 中
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)));
}
});
}
activity_main.xml
<?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>
Create class MyCalendarAdapter
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
<?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>
关于android - 动态设置单元格高亮颜色Android Times Square CalendarView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39158967/
我正在使用http://plugins.jquery.com/project/maphilight用于当我将鼠标悬停在图像 map 上时突出显示区域,但我也想在单击时保持其突出显示。单击另一区域时,前
所以目前,我正在尝试为三个 TextView 创建一个选定状态 目前,对于每个 TextView ( H M S ),文本都是红色的: 但是,当点击 H M 或 S 时,我希望它变成另一种颜色——白色
我们正在尝试添加一些与我们网站的访问者相关的视觉统计数据。我们现在关注访问者的位置。 我们想要创建一个 map (通过 jquery 插件): a) 在 map 上显示输入的 IP 的位置,或者如果第
我在 stackoverflow 上阅读了几个关于 RecyclerView 中项目突出显示的问题,但我什么也做不了,但我的问题应该更容易,因为我只想突出显示一个项目。我成功地做了一些事情,但它也突出
我正在使用 ElasticSearch 来索引文档。 我的映射是: "mongodocid": { "boost": 1.0, "store": "yes", "type": "strin
所以,这不是绝对需要,但我很好奇,如果它存在,我可能会想在某个时候使用它...... 我开发了一个网站(不是我的设计),其中某些文本区域有文本阴影,我注意到当突出显示所述文本时,它不是很清晰。我知道并
我并排显示了以下三个元素: Title T1 T2 T3 我想在用户点击后突出显示该元素(例如 T1)。类似于 stackove
我试图很好地显示 NSTextView 中突出显示的段落。现在,我通过创建一个带有背景颜色的 NSAttributedString 来做到这一点。这是一些简化的代码: NSDictionary *at
我怎样才能让我的类被突出显示为一个普通的原始类型,比如 int 或 double? 看一个例子: 当我声明 Test aloha; 时,我想要那个测试以与 int a 相同的方式突出显示. 最佳答案
我不介意语法着色,但我发现 Notepad++ 突出显示整个 Javascript 代码块,有效地使它们变暗并使其难以阅读,这非常烦人。它看起来像这样: 正如您所看到的,它用紫色遮盖了整个 JavaS
我想根据路由切换 routerLinkActive 的突出显示,我有一个仪表板组件,仪表板菜单项和标签菜单项都引用同一个组件,我想根据路线向 li 元素添加类对于仪表板,路线将是 http://loc
试图摆脱 IE 中的蓝色突出显示。这是一个选择标签。当您下拉下拉框并选择一个选项时,会出现蓝色突出显示。我在 Mac 上并且没有 IE,所以我无法测试它。它只是背景颜色:透明吗? 这是我所看到的图像。
我最近获得了 Microsoft Visual Studio 2015 企业 RC。在此屏幕截图中,我使用的是 C#。我突出显示了括号,但这些括号内的 block 没有像在 Visual Studio
有谁知道是否有任何 Sublime Text 2 包可用于为 SpecFlow/Gherkin 规范文件启用语法高亮显示? 最佳答案 有一些解决方案可以将 Sublime Text 与 Gherkin
我是 Elasticsearch 的新手。我希望在 Java 客户端中突出显示字段。如果我在 Windows 提示符下运行以下查询: { "query": { "filtere
如果想所有用户生效 请修改 /etc/vimrc (建议先cp一份) "==========================================================
我正在 Eclipse 中使用 PhoneGap for Android 编写一个应用程序。由于项目是Android项目,所以是Java视角。无论出于何种原因,Eclipse 都不会为我突出显示 HT
狼群! 我想突出显示我悬停的任何元素,就像 Chrome 开发工具所做的那样。 Picture of Chrome Dev Tools 请注意整个元素是如何浸透在蓝色调中的?这不像添加背景颜色或线性渐
我是一名优秀的程序员,十分优秀!