2

我正在尝试为我的日历视图中选择的日期着色。我努力了

String todayDate = (mDay + "/" + mMonth + "/" + mYear);

Toast.makeText(this, "TODAYS DATE" + todayDate, LENGTH_SHORT).show();

Cursor cursor = myDatabase.rawQuery("select * from " + Calms.DATABASE_FLARE_TABLE, null);

//calendarView.setDateTextAppearance(Integer.parseInt("@+color/orange"));

for(int count=1; count<=cursor.getCount(); count++)
{
    cursor.moveToNext();
    String savedDate = cursor.getString(2);

    //calendarView.setDateTextAppearance(getResources().getColor(R.color.orange));
    //calendarView.setDateTextAppearance(R.color.color);

    Toast.makeText(this, "DATE IN DB: "+ savedDate, LENGTH_SHORT).show();
    Toast.makeText(this, "next", LENGTH_SHORT).show();

    if (savedDate.equals(todayDate))
    {
        Toast.makeText(this, "IN IF!!", LENGTH_SHORT).show();
        //calendarView.setDateTextAppearance(Integer.parseInt("@color/orange"));

        calendarView.setDateTextAppearance(getResources().getColor(R.color.orange));
    }

我也尝试过 context.getRes .....

似乎没有任何效果。日期的颜色永远不会改变。

有人能帮忙吗?谢谢

4

1 回答 1

-1
setTextColor(Color.GREEN);

这就是我用来改变颜色的东西。适用于按钮,希望它也适用于您。

于 2013-02-18T14:11:37.073 回答