我在原始文件夹中保存了一组引号,并有一个下一步按钮。第一个报价与今天的日期一起显示,但是当我单击下一步按钮时,下一行报价可见但日期相同。我需要获取第二天的日期以显示下一个报价等等.. 我该怎么做?
//calender code
mdate = (TextView) findViewById(R.id.datetext);
final Calendar c = Calendar.getInstance();
yy = c.get(Calendar.YEAR);
mm = c.get(Calendar.MONTH);
dd = c.get(Calendar.DAY_OF_MONTH);
// set current date into textview
mdate.setText(new StringBuilder()
// Month is 0 based, just add 1
.append(dd).append(" ").append("-").append(mm + 1).append("-")
.append(yy));
请帮我解决一下这个。非常感谢