我有一个应用程序,用户在 edittext 中输入数据并按下保存按钮。
通过按“保存”,我将用户数据(在一列中)和当前日期(在另一列中)保存在一个文件中。
然后,我按下另一个按钮并绘制(使用 achartengine)日期(x 轴)数据(y 轴)。
因此,在一天中输入数据会导致保存例如:“1”(用户数据)-> 20/4/2013,“2”-> 20/4/2013,“3”-> 20/4/2013 .
在情节中,我在 y 轴上有 3 个点(好的),在 x 轴上有 3 个点(不好)。
我想在 x 轴上有一个点,因为数据是在同一天输入的。
我保存数据:
public void savefunc(){
SimpleDateFormat thedate = new SimpleDateFormat("dd/MM/yyyy");
Date d=new Date();
String formattedDate=thedate.format(d);
Log.d("tag","format"+formattedDate);
dates_Strings.add(formattedDate);
double thedata=Double.parseDouble(value.getText().toString().trim());
mydata.add(thedata);
File sdCard = Environment.getExternalStorageDirectory();
File directory = new File (sdCard, "MyFiles");
directory.mkdirs();
File file = new File(directory, filename);
FileOutputStream fos;
//saving them
try {
fos = new FileOutputStream(file);
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(fos));
for (int i=0;i<mydata.size();i++){
bw.write(mydata.get(i)+","+dates_Strings.get(i)+"\n");
}
...
如何在一天中保存用户数据?
也许在这里检查一下: Date d=new Date();
?检查是否是同一天。
或在这里:bw.write(mydata.get(i)+","+dates_Strings.get(i)+"\n");
但我想不通。
例如,我在日期“20/4/2013”中输入数据“1”、“2”、“3”。
- - - - - - - -更新 - - - - - - - - - - - - - - - - - ----------------
mRenderer.setXLabels(0);
for (int i=0;i<mydata.size();i++){
mRenderer.addXTextLabel(i,dates_Strings.get(i));
Date lastDate=null;
String lastdate="";
try{
// the initial date
Date initialDate=formatter.parse(dates_Strings.get(mydata.size()-1));
Calendar c = Calendar.getInstance();
c.setTime(initialDate);
c.add(Calendar.DATE, 1); // increase date by one
lastDate =c.getTime();
}catch ...
}
mRenderer.setXAxisMax(lastDate.getTime());
mRenderer.addXTextLabel(i,dates_Strings.get(i));
}