私はGraphView
ライブラリを使用しており、メソッドGraphViewData
を使用してLineGraph
. 正直なところLineGraph
、このライブラリで を生成する方法がわかりません。そこで、 を示すサンプルのモック データを削除LineGraph
し、独自の x データと y データに置き換えました。
しかし、私は何か間違ったことをしています.x軸とy軸を埋めるだけで、それ自体の行は表示されません:
Bundle extras = getIntent().getExtras();
if(extras != null) {
valueX = extras.getDouble("xValue");
valueY = extras.getDouble("yValue");
Log.d("X = " + valueX, " Y = " + valueY);
}
GraphViewSeries exampleSeries = new GraphViewSeries(
new GraphViewData[] {
new GraphViewData(valueX, valueY)
});
// graph with dynamically genereated horizontal and vertical labels
GraphView graphView;
graphView = new LineGraphView(
this, // context
"Incomming Bluetooth Data"); // heading
graphView.addSeries(exampleSeries); // data
LinearLayout layout = (LinearLayout) findViewById(R.id.graph1);
layout.addView(graphView);