我嘗試了很多代碼,其中沒有一個能夠工作。我試過這個:如何在Android應用程序中獲得速度
//This is in another void
Location location = new Location(LocationManager.GPS_PROVIDER);
location.setSpeed(0);
Greitis(location);
//This is in CountDownTimer which has onTick every 1 second
public void Greitis(Location location) {
if (location.hasSpeed()) {
speed.setText(location.getSpeed() * 3.6 + " Km/h");
}
}
任何人都可以說爲什麼它不工作或寫我如何正確獲得速度。
有很多輝煌的解決方案都在那裏第一次發佈之前做一些研究(至少搜索)。 –