Home | History | Annotate | Download | only in list

Lines Matching refs:headerRow

101                 SchedulesHeaderRow headerRow = new DateHeaderRow(calculateHeaderDate(deadLine),
105 add(headerRow);
107 add(new ScheduleRow(recording, headerRow));
196 SchedulesHeaderRow headerRow = ((ScheduleRow) get(pre)).getHeaderRow();
197 headerRow.setItemCount(headerRow.getItemCount() + 1);
198 ScheduleRow addedRow = new ScheduleRow(recording, headerRow);
200 updateHeaderDescription(headerRow);
202 SchedulesHeaderRow headerRow = ((ScheduleRow) get(index)).getHeaderRow();
203 headerRow.setItemCount(headerRow.getItemCount() + 1);
204 ScheduleRow addedRow = new ScheduleRow(recording, headerRow);
206 updateHeaderDescription(headerRow);
208 SchedulesHeaderRow headerRow = new DateHeaderRow(calculateHeaderDate(deadLine),
211 add(++pre, headerRow);
212 ScheduleRow addedRow = new ScheduleRow(recording, headerRow);
227 SchedulesHeaderRow headerRow = scheduleRow.getHeaderRow();
230 if (headerRow != null) {
231 int currentCount = headerRow.getItemCount();
232 headerRow.setItemCount(--currentCount);
233 if (headerRow.getItemCount() == 0) {
234 remove(headerRow);
236 replace(indexOf(headerRow), headerRow);
237 updateHeaderDescription(headerRow);
243 private void updateHeaderDescription(SchedulesHeaderRow headerRow) {
244 headerRow.setDescription(mContext.getResources().getQuantityString(
246 headerRow.getItemCount(), headerRow.getItemCount()));