0

我有一个活动,我从编辑文本中获取输入并将其存储在列表中。

我还将当前日期存储在列表中。

然后,我按下保存上述内容的保存按钮。

第二天用户再输入一些数据并保存等等。

我想用 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

4

2 回答 2

2

处理您的文件的代码必须是这样的(未编译):

public void savefunc(){
    List<String> myDate = new ArrayList<String>(); //To store the formatted dates
    SimpleDateFormat thedate = new SimpleDateFormat("dd/MM/yyyy"); 
    Date d=new Date(); //the current date
    String sd = thedate.format(d); // sd contains "16/04/2013", the formatted date
    myDate.add(sd);

    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");
    }
}


public void readfunc(){

    SimpleDateFormat thedate = new SimpleDateFormat("dd/MM/yyyy"); 
    Date d;
    BufferedReader br = new BufferedReader(new InputStreamReader(fis));

    do {
        s = br.readLine();     
        if (s != null ){
            String[] splitLine = s.split(","); //first substring is the formatted date
            date.add(thedate.parse(splitLine[0])); //do something with exception
            data.add(Double.parseDouble(splitLine[1]));
...

希望能帮助到你。

于 2013-04-16T22:21:25.643 回答
0

对于动态图,使用 GraphicalView 而不是 intent::

 public GraphicalView mChartView;

创建一个 xml::

<RelativeLayout 
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   xmlns:android="http://schemas.android.com/apk/res/android">

<LinearLayout
    android:id="@+id/graph"
    android:layout_width="fill_parent"
    android:layout_height="145dip" >

  </LinearLayout>
</RelativeLayout> 

然后在你的代码中:

 LinearLayout layout = (LinearLayout) findViewById(R.id.graph);
 mChartView = ChartFactory.mChartView = ChartFactory.getLineChartView(getBaseContext(), dataset, renderer)
 layout.addView(mChartView); 
  • 输入您从编辑文本字段中读取的值后:

  • 然后您传递新值以添加到相应的数组列表中

  • 那么您应该在添加新值后再次调用线图的代码,并记住在读取数组列表(即。dataset.clear();)之前清除系列,即。当行代码功能从头开始添加 dataset.clear(); 因为如果您不清除数据将重叠,并且可能通过异常或行可能会在旧数据中看起来很厚......

然后调用mChartView.repaint();刷新图

这些链接也会帮助你链接1 链接2

于 2013-04-15T13:05:14.390 回答