我想在一個片段中添加了曲線圖,但是我失敗了。我該怎麼做?如何在片段中創建圖形?
這裏是我的代碼片段:
public class Info extends Fragment
{
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
{
return inflater.inflate(R.layout.info, container, false);
GraphView graph = (GraphView) findViewById(R.id.graph);
LineGraphSeries<DataPoint> series = new LineGraphSeries<DataPoint>(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);
}
}
,當我嘗試運行我得到這個錯誤: GraphView圖=(GraphView)findViewById(R.id.graph); 錯誤:(42,39)錯誤:無法找到符號方法findViewById(int)的
我也有這個在我的info.xml
<com.jjoe64.graphview.GraphView
android:layout_width="match_parent"
android:layout_height="125dp"
android:id="@+id/graph" />
但仍歌廳錯誤。
什麼是你所得到的錯誤?你能否詳細解釋一下正在發生的事情,你想要做什麼,以及哪些工作沒有具體工作? – Marc
我正在錯誤此GraphView圖表=(GraphView)findViewById(R.id.graph); 錯誤:(42,39)錯誤:無法找到符號方法findViewById(int)的 – Murat
您可以編輯您的問題和錯誤補充呢? – Marc