Android日期持久存在于数组中

时间:2016-02-03 08:00:19

标签: android date calendar

我想在数组中存储十个日期(在时间间隔之前和之后的范围内)

例如: - mStaggeredGridView = (StaggeredGridView) rootView.findViewById(R.id.some_id)

我期望的数组Today's date is 03-02-2016;

数组类型可以是字符串。

1 个答案:

答案 0 :(得分:0)

 for (int i = 0; i <= 13; i++) {
        if (i == 0) {
            for (int j = 0; j <= 3; j++) {
                calendar.add(Calendar.DAY_OF_MONTH, -1);
                SimpleDateFormat sdf1 = new SimpleDateFormat("dd/MM/yyyy");
                String date1 = sdf1.format(calendar.getTime());
                System.out.println(date1);
            }
        } else {
            calendar.add(Calendar.DAY_OF_MONTH, +1);
            SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
            String date = sdf.format(calendar.getTime());
            System.out.println(date);
            dateinterval.add(date);
        }
    }

最后我得到了答案