Android之间的2个活动之间的实时OBD数据

时间:2015-05-30 15:18:26

标签: android android-activity dictionary

我一直在使用https://github.com/pires/android-obd-reader在obd活动中实时使用OBD数据捕获。

基本上,此活动每隔几秒就会更新一次信息。 我想要的只是实时使用这些信息(例如燃料水平)和其他活动,并且不是实时更新文本。

public void onLocationChanged(Location location){
        latitude = location.getLatitude();
        longitude = location.getLongitude();
        drawMyTrack(latitude, longitude, prevLatitude, prevLongitude);
        prevLatitude = latitude;
        prevLongitude = longitude;
        sendLocationDataToWebsite(location);
        text=  currentTrip.getFuelLevel();
        TextView txtChanged = (TextView)findViewById(R.id.textView2);
        txtChanged.setText(text);
}

0 个答案:

没有答案