我一直在使用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);
}