-3

アプリケーションで日付を正しく表示するのに苦労しています。コードは次のとおりです。

//i declare the calendar called now
private Calendar now;

//i set up the calendar with what i believe could be the problem in setting up the wrong date
now = Calendar.getInstance();
    now.set(Calendar.MONTH, Calendar.MONTH);
    now.set(Calendar.DAY_OF_MONTH, Calendar.DAY_OF_MONTH);
    now.set(Calendar.DAY_OF_WEEK, Calendar.DAY_OF_WEEK);

//whatDay being a textview, is asked to display the date
whatDay.setText(DateFormat.format("E, dd MMMM", now));

現時点では、日付の表示に関する限り、すべてが機能しています - 少し問題である間違った日付が表示されているだけです

4

1 に答える 1