我有一个活动,我从编辑文本中获取输入并将其存储在列表中。
我还将当前日期存储在列表中。
然后,我按下保存上述内容的保存按钮。
第二天用户再输入一些数据并保存等等。
我想用 x 轴日期格式和 y 轴用户输入的值制作一个图。
在一项活动中,我有:
...
String filename = "data.csv";
List<Double> mydata=new ArrayList<Double>();
List<Date> mydate=new ArrayList<Date>();
....value=(EditText) findViewById(R.id.enter_data);
...
switch (v.getId()){
case R.id.savebtn:
savefunc();
break;
case R.id.graphicsbtn:
Intent i = new Intent();
i.setClassName(this,LineGraph.class.getName());
this.startActivity(i);
break;
public void savefunc(){
SimpleDateFormat thedate = new SimpleDateFormat("dd/MM/yyyy");
Date d=new Date();
try{
d=thedate.parse(filename);
mydate.add(d);
}
catch (ParseException e){
// TODO Auto-generated catch block
e.printStackTrace();
}
double thedata=Double.parseDouble(value.getText().toString().trim());
mydata.add(thedata);
..
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(fos));
for (int i=0;i<mydate.size();i++){
bw.write(mydate.get(i)+","+mydata.get(i)+"\n");
...
在 LineGraph 活动中:
public class LineGraph extends Activity {
private static List<Date> date = new ArrayList<Date>();
private static List<Double> data = new ArrayList<Double>();
public Intent getIntent(Context context){
readfunc();
TimeSeries series = new TimeSeries("Showing data");
for (int i=0;i<date.size();i++){
series.add(date.get(i),data.get(i));
}
读取功能:
public void readfunc(){
SimpleDateFormat thedate = new SimpleDateFormat("dd/MM/yyyy");
Date d=new Date();
try{
d=thedate.parse(filename);
}
catch..
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
do {
s = br.readLine();
if (s != null ){
String[] splitLine = s.split(",");
date.add(d);//Double.parseDouble(splitLine[0]));
data.add(Double.parseDouble(splitLine[1]));
我有这些问题:
1)我收到的文件是空的(日期有问题,因为保存和读取文件的方法有效)。
2)在图形屏幕上出现白色背景(当然没有数据,因为文件是空的),但为什么是白色背景?我将相同的代码用于其他目的,我没有收到白色背景。
3)我不确定如何在 x 轴上使用 Dates。我应该使用 List 吗?列表 ?.
- - - - - - - - - - - - 更新 - - - - - - - - - - - - - --------------------------------
好的,最后!(根据用户“Dan”的建议)
我用了ChartFactory.getTimeChartView(this, dataset, mRenderer,"dd/MM/yyyy");
代替ChartFactory.getLineChartIntent(context, dataset, mRenderer,"dd/MM/yyyy");
而且您不需要使用 String List ,只需使用 Date List