0

在此处输入图像描述 这是图像,我只想显示当前月份的日期,而不是下一个日期,而不是前几天。这是我的适配器代码,我从适配器管理和设置天数。在类文件中,我在 gridview 中设置了适配器。你能帮忙吗?

包 com.ManageMyTimeTableAdapter;

import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import android.content.Context;
import android.graphics.Color;
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.ManageMyTimeTable.CalendarView;
import com.ManageMyTimeTable.DaliyScreenActivity;
import com.ManageMyTimeTable.DateUtils;
import com.ManageMyTimeTable.R;

public class CalendarAdapter extends BaseAdapter{
private Date[] calendarGrid;
private Context mContext;
private LayoutInflater inflater;
private static Calendar mCal;   
private String today;
SimpleDateFormat format = new SimpleDateFormat("MM/dd/yyyy");

public CalendarAdapter(Context context){
    mContext = context;
    inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    mCal = Calendar.getInstance();
    CalendarView.dateStore.clear();
    initCalendar(mCal);     
}   
private void initCalendar(Calendar cal){

    Calendar c = Calendar.getInstance();
    c.setTime(cal.getTime());
    c.set(c.get(Calendar.YEAR), c.get(Calendar.MONTH), 1);

    int startOfWeek = c.get(Calendar.DAY_OF_WEEK);
    Log.e("fdfdfdf",""+startOfWeek);
    Log.e("-1 vagar nu",""+c.get(Calendar.DAY_OF_WEEK));

    c.add(Calendar.DATE, -startOfWeek);

    calendarGrid = new Date[6 * 7];
    int gridCount = 0;
    for (int week = 0; week < 6; week++) {
        for (int day = 0; day < 7; day++) {
            Date dt = c.getTime();
            dt.setHours(0);
            dt.setMinutes(0);
            dt.setSeconds(0);
            calendarGrid[gridCount++] = dt;
            c.add(Calendar.DATE, 1);
            }
        }
    }

public void nextMonth() {

    mCal.set(mCal.get(Calendar.YEAR), mCal.get(Calendar.MONTH) + 1, mCal.get(Calendar.DATE));
    initCalendar(mCal);
    notifyDataSetChanged();
}

public void prevMonth() {

    mCal.set(mCal.get(Calendar.YEAR), mCal.get(Calendar.MONTH) - 1, mCal.get(Calendar.DATE));
    initCalendar(mCal);
    notifyDataSetChanged();
}

public Calendar getCurrentCalendar() {
    return mCal;
}

@Override
public int getCount() {
    return calendarGrid.length;
}

@Override
public Date getItem(int position) {
    return calendarGrid[position];
}

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

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    ViewHolder holder;

    if (convertView == null) {

        holder = new ViewHolder();
        convertView = inflater.inflate(R.layout.raw_my_calendar, null);
        holder.txtDate = (TextView) convertView.findViewById(R.id.txtCalDate);
        holder.txtEventCount = (TextView) convertView.findViewById(R.id.txtEventCount);
        convertView.setTag(holder);

    }else{
        holder = (ViewHolder) convertView.getTag();
    }
    Date date = getItem(position);

    holder.txtDate.setText(String.format("%2d", date.getDate()));
    holder.txtDate.setTag(format.format(date).toString());
    String keyDate = DateUtils.formatDate(DateUtils.DB_DATE_FORMAT, date);
    setStyle(keyDate, position, holder.txtDate, convertView);

    if(CalendarView.dateStore.size()>= position+1){

        Log.d(" Calender Adapter "," Clear arrayList ****  "+CalendarView.dateStore.size());
        CalendarView.dateStore.clear();         
    }       
    CalendarView.dateStore.add(format.format(date).toString());     
    return convertView;
}

private void setStyle(String dateKey, int position, TextView txt, View convertView){

    if (dateKey.equals(today))
        convertView.setBackgroundColor(Color.parseColor("#88D23218"));
    else
        convertView.setBackgroundColor(Color.parseColor("#88CCCCCC"));

    if (getItem(position).getMonth() != mCal.get(Calendar.MONTH))
        txt.setTextColor(Color.parseColor("#FF787878"));
    else

        txt.setTextColor(Color.parseColor("#FF000000"));

        if(DaliyScreenActivity.month_member_id_arr.contains(txt.getText().toString())){             

            convertView.setBackgroundColor(Color.YELLOW);
            convertView.setBackgroundColor(android.graphics.Color.rgb(230, 187, 60));               
        }       
    }   
static class ViewHolder {
    TextView txtDate;
    TextView txtEventCount;
}

}

4

2 回答 2

1

检查,不在当前月份的单元格在哪里设置它们的灰色文本颜色,或者将文本颜色设置为与背景相同的颜色,或者更好地为这些单元格设置空文本。

if (getItem(position).getMonth() != mCal.get(Calendar.MONTH))
    txt.setTextColor(Color.parseColor("#88CCCCCC"));

或者

if (getItem(position).getMonth() != mCal.get(Calendar.MONTH))
    txt.setText("");
于 2012-08-29T12:14:57.130 回答
1

在你的getView方法中......改变你的最后一个if..else

对此,

 if (getItem(position).getMonth() != mCal.get(Calendar.MONTH))
 {
        txt.setTextColor(Color.parseColor("#FF787878"));
 }
 else
 {
        txt.setTextColor(Color.parseColor("#FF000000"));

          if(DaliyScreenActivity.month_member_id_arr.contains(txt.getText().toString())){             

            convertView.setBackgroundColor(Color.YELLOW);
            convertView.setBackgroundColor(android.graphics.Color.rgb(230, 187, 60));               
        }       
 }

我的意思是说保留您的代码以在部分中将背景更改为黄色else

于 2012-09-08T07:20:21.347 回答