PanagiotisJunMobileDev

Results 2 issues of PanagiotisJunMobileDev

GraphView graph1 = (GraphView) view.findViewById(R.id.graph01); seriesAccLx = new LineGraphSeries(); seriesAccLy = new LineGraphSeries(); seriesAccLz = new LineGraphSeries(); graph1.addSeries(seriesAccLx); graph1.addSeries(seriesAccLy); graph1.addSeries(seriesAccLz); graph1.getLegendRenderer().setVisible(true);//more edit graph1.getLegendRenderer().setTextSize(40); graph1.getLegendRenderer().setAlign(LegendRenderer.LegendAlign.TOP); seriesAccLx.setColor(Color.RED); seriesAccLx.setTitle("AccLx"); seriesAccLy.setColor(Color.GREEN); seriesAccLy.setTitle("AccLy"); seriesAccLz.setColor(Color.BLUE); seriesAccLz.setTitle("AccLz");...

https://github.com/jjoe64/GraphView/wiki/Realtime-chart What if i create threads or handler? or service listener register interface etc? like got services that when they get data they send instantly and these i use to...