java - 位置始终为空

标签 java android android-studio geolocation location

我正在构建一个速度计应用程序,为此我使用 location getSpeed() 命令。 我或多或少遵循了本教程: https://www.youtube.com/watch?v=ua4jY0lBvCA&list=FLEK0r5UuT755jVeeb70m_tg&index=2&t=0s

该应用程序安装在我的手机中,并打开、请求权限等。但更新速度不快。 我猜测问题就在这里,因为我在我想要速度的 TextView 中看到“-.- km/hr”:

    @Override
public void onLocationChanged(Location location) {
    //Set up the text view with the location and getSpeed()
    TextView txt = (TextView) this.findViewById(R.id.textView);

    if (location == null) {
        txt.setText("-.- km/hr");
    } else {
        float nCurrentSpeed = location.getSpeed() * 3.6f;
        txt.setText(String.format("%.2f", nCurrentSpeed) + " km/hr");
    }
}

此外,它还显示“正在等待我在这里提到的 GPS 信号:

    //Custom function for setting up location manager
private void doStuff() {
    LocationManager lm = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);

    if (lm == null) {
        if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
            ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, 1000);
            ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_COARSE_LOCATION}, 1001);
            return;
        }
        lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
    } else {
        Toast.makeText(this,"Waiting for GPS signal",Toast.LENGTH_SHORT).show();
    }
}

如果您在上面的代码 fragment 中没有发现问题,这里是完整的 MainActivity.java

//implement LocationListener and apply its methods
public class MainActivity extends AppCompatActivity implements LocationListener {


@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    FloatingActionButton fab = findViewById(R.id.fab);
    fab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                    .setAction("Action", null).show();
        }
    });

    //checks permission, goes to onRequestPermissionsResult
    if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
        // If permission is not granted,
        ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, 1000);
    } else {

        //starts the program if permission is granted
        doStuff();
    }
    this.onLocationChanged(null);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}

//Code for checking permissions
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
    super.onRequestPermissionsResult(requestCode, permissions, grantResults);
    if (requestCode == 1000) {
        if (grantResults[0] == PackageManager.PERMISSION_GRANTED) {
            doStuff();
        }
        finish();
    }

}

@Override
public void onLocationChanged(Location location) {
    //Set up the text view with the location and getSpeed()
    TextView txt = (TextView) this.findViewById(R.id.textView);

    if (location == null) {
        txt.setText("-.- km/hr");
    } else {
        float nCurrentSpeed = location.getSpeed() * 3.6f;
        txt.setText(String.format("%.2f", nCurrentSpeed) + " km/hr");
    }
}

//Custom function for setting up location manager
private void doStuff() {
    LocationManager lm = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);

    if (lm == null) {
        if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
            ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, 1000);
            ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.ACCESS_COARSE_LOCATION}, 1001);
            return;
        }
        lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
    } else {
        Toast.makeText(this,"Waiting for GPS signal",Toast.LENGTH_SHORT).show();
    }
}

    @Override
public void onStatusChanged(String provider, int status, Bundle extras) {

}

@Override
public void onProviderEnabled(String provider) {

}

@Override
public void onProviderDisabled(String provider) {

}
}

我是一个非常新的程序员,你可以说这是我制作的第一个应用程序,所以这很可能是一个新手错误。请帮忙。

最佳答案

请求位置更新的唯一时刻是在 doStuff 函数中,当 lm==null...时,您应该在 lm!= 时请求它们null 相反。

关于java - 位置始终为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60973665/

相关文章:

java - 动画位图的绘图列表

android - 通过 Android 应用程序将位置添加到 newUploadPhotoRequest (Facebook)

java - 在使用应用程序期间如何启用 android LED?

java - 将 GCM 添加到项目

android-studio - 初始化 ADB 错误 : Debug Bridge not found

android - Android Studio 的 Mopub 集成

java - 如何在Java中更新嵌套的mongodb文档数据

java - 访问动态壁纸中的时间

java - 如何在java中的arraylist中添加异常

Android Studio 出现错误 "Could not download builder.jar (com.android.tools.build:builder:3.2.0): No cached version available for offline mode"