2016-11-10 45 views
0

公共查看onCreateView(LayoutInflater吹氣,ViewGroup中容器, 捆綁savedInstanceState){Android studio在graph.addSeries(系列)中顯示錯誤。 Android的工作室是表示一系列graph.add(系列)

// Inflate the layout for this fragment 
    View rootView= inflater.inflate(R.layout.fragment_graph, container, false); 
    GraphView graph = (GraphView) rootView.findViewById(R.id.graph); 
    BarGraphSeries<DataPoint> series = new BarGraphSeries<>(new DataPoint[] { 
      new DataPoint(0, 1), 
      new DataPoint(1, 5), 
      new DataPoint(2, 3), 
      new DataPoint(3, 2), 
      new DataPoint(4, 6) 
    }); 
    graph.addSeries(series); 
    return rootView; 
} 

回答

0

我處理這個錯誤紅色下劃線。我只是改變了依賴關係編譯'com.jjoe64:graphview:4.2.2'在build.gradle中編譯'com.jjoe64:graphview:4.0.1'。

0

當前版本是4.2.1,所以你應該加入加入Graphview.3.0.0罐子將其更改爲

compile 'com.jjoe64:graphview:4.2.1'

0

我已經解決了這個問題。 最初我正在使用Graphview.4.2.1,所以同樣的錯誤即將到來,但是當我添加更低版本時,一切都運行良好。