ボタンをクリックするだけで終日表示したい。アクションは次のようになります。たとえば、月がFEB-2013であるとすると、ボタンを初めてクリックすると、この日が表示されます。
3/11/2013, 4/11/2013, 5/11/2013, 6/11/2013, 7/11/2013, 8/11/2013, 9/11/2013
2回目のボタンクリックでこんな感じで表示したい
10/11/2013, 11/11/2013, 12/11/2013, 13/11/2013, 14/11/2013, 15/11/2013, 16/11/2013
同様に、ボタンをクリックするたびに、残りの日をこの形式で表示したいと思います。だからそれをどのように行うことができるか、私はこのコードを試しましたが、それは表示されます
3/11/2013, 4/11/2013, 5/11/2013, 6/11/2013, 7/11/2013, 8/11/2013, 9/11/2013
私が使用したコード
Calendar c = Calendar.getInstance();
// Set the calendar to monday of the current week
c.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY);
// Print dates of the current week starting on Monday
DateFormat df = new SimpleDateFormat("dd/MM/yyyy", Locale.US);
for (int i = 0; i < 7; i++)
{
System.out.println(df.format(c.getTime()));
c.add(Calendar.DAY_OF_MONTH, 1);
}