I have ViewPager which contains 3 fragments to display calendar month start with the middle one as a current month. When swift page left or right, I update those 3 fragments to show specify month and change ViewPage back to middle.
Everything work fine by now, but when I want to keep state which day the user click in each month it isn't working properly in Android 2.2.
I keep state by keeping the position of the view item in GridView which user click in each month and change background to response the click.
For example, If user click day 25 on December, day 25 got highlight
But, when I swift to next month and swift back highlight change to day 6. after some test I realize that the view order is reverse.
This behavior only occurs on Android 2.2 and 2.1. But in Android 4.1.2, it works perfectly.

Update Fragment
public void setCalendar(Calendar currentMonth) {
Calendar prevMonth = Calendar.getInstance();
prevMonth.setTime(currentMonth.getTime());
prevMonth.add(Calendar.MONTH, -1);
Calendar nextMonth = Calendar.getInstance();
nextMonth.setTime(currentMonth.getTime());
nextMonth.add(Calendar.MONTH, 1);
fragList[0].updateUI(prevMonth);
fragList[1].updateUI(currentMonth);
fragList[2].updateUI(nextMonth);
}
On MonthFragment
@Override
public void updateUI(Calendar monthYear) {
View v = getView();
if (v == null)
return;
// clear background highlight old month, if any
for (Integer position : positionSelected) {
Log.d(tag + " " + testTag, "Clear Background : " + position);
((ViewGroup) calendarView.getChildAt(position)).getChildAt(0)
.setBackgroundResource(0);
}
// change calendar to new month
calendar = monthYear;
// update GridView to new month date
calendarViewAdapter.setNewDataSource(calendar);
calendarViewAdapter.notifyDataSetChanged();
// if StoreDataState doesn't have new month yet, create it.
if (!StoreDataState.haveThisMonth(calendar)) {
StoreDataState.addPositionSelected(calendar);
}
// retrieve date selected from new month
// set positionSelected with position select store on new month
positionSelected = StoreDataState.getPositionSelected(calendar);
// set background to cell based on data in positionSelected of new month
for (final Integer position : positionSelected) {
Log.d(tag + " " + testTag, "Set Background : " + position);
/*calendarView.post(new Runnable() {
@Override
public void run() {*/
// TODO Auto-generated method stub
//position here is correct but when on display
//the view that I highlight got bind to other data.
((ViewGroup) calendarView.getChildAt(position)).getChildAt(0)
.setBackgroundResource(R.drawable.layout_border);
/*}
});*/
}
}
I have try to use GridView.post() , hightlight is correct on Android 2.2 but it gives me a blink hightlight everytime user swift to change month. It is not acceptable.
calendar adapter
public void setNewDataSource(Calendar calendar) {
this.calendar = calendar;
CalendarCalc calc = new CalendarCalc(calendar);
list = calc.getCalendarValue();
}
private static class ViewHolder {
LinearLayout dayLayout;
TextView gridcell;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
View gridElement = convertView;
ViewHolder holder = null;
// parse xml layout
if (gridElement == null) {
inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
gridElement = inflater.inflate(
R.layout.monthview_calendar_day_gridcell, parent, false);
holder = new ViewHolder();
holder.gridcell = (TextView) gridElement
.findViewById(R.id.monthview_calendar_day_text);
holder.dayLayout = (LinearLayout) gridElement
.findViewById(R.id.monthview_calendar_day_layout);
gridElement.setTag(holder);
} else {
holder = (ViewHolder) gridElement.getTag();
}
// get day value (day,month,year)
String[] day_status = list.get(position).split("-");
// set layout to each calendar day
holder.gridcell.setFocusable(false);
holder.gridcell.setClickable(false);
// set day to show
holder.gridcell.setText(day_status[0]);
// embedded value to each day
holder.gridcell.setTag(day_status[0] + "-" + day_status[2] + "-"
+ day_status[3]);
// different text color based on day type
if (day_status[1].equals("OTHERDAY")) {
holder.gridcell.setTextColor(Color.GRAY);
}
if (day_status[1].equals("DAY")) {
holder.gridcell.setTextColor(context.getResources().getColor(
R.color.monthview_calendar_day_text));
}
if (day_status[1].equals("TODAY")) {
holder.gridcell.setTextColor(Color.RED);
}
return gridElement;
}
}
Is there any workaround to overcome this?
Thank.