Вы можете сделать следующее:
Calendar cal=Calendar.getInstance();
int currentDay=cal.get(Calendar.DAY_OF_MONTH);
//Set the date to 2 days ago
cal.set(Calendar.DAY_OF_MONTH, currentDay-2);
, тогда вы можете получить дату:
cal.getTime(); //The date 2 days ago