gpt4 book ai didi

java - 尝试添加棉花糖权限支持时无法解析符号 'LocationService'

转载 作者:行者123 更新时间:2023-11-29 20:10:36 27 4
gpt4 key购买 nike

我正在尝试创建一个 GPSTracker 类,我可以从一个 fragment 运行它来获取用户的 GPS 位置。我有一个运行良好,除了它需要愚蠢的棉花糖许可支持(我知道这并不愚蠢,我实际上喜欢它,但它现在是一种害虫)。

我收到两条错误消息。一个“无法解析行中的符号‘LocationService’

ActivityCompat.requestPermissions( this, new String[] {  android.Manifest.permission.ACCESS_COARSE_LOCATION  },
LocationService.MY_PERMISSION_ACCESS_COURSE_LOCATION);

和另一个“无法解析方法‘showAlertDialog(me.paxana.alerta.adapter.GPSTracker, java.lang.String, java.lang.String, boolean)’”

在线

public void showAlertDialog(){
am.showAlertDialog(GPSTracker.this, "GPS Setting", "Gps is not enabled. Do you want to enabled it ?", false);

GPSTracker.java

package me.paxana.alerta.adapter;

import android.Manifest;
import android.app.AlertDialog;
import android.app.Service;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.IBinder;
import android.provider.Settings;
import android.app.AlertDialog;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import com.google.android.gms.location.LocationListener;
import com.google.android.gms.location.LocationRequest;
import com.google.android.gms.location.LocationServices;
import android.app.Activity;

import com.afollestad.assent.Assent;
import com.afollestad.assent.Assent.*;
import com.afollestad.assent.AssentActivity;
import com.afollestad.assent.AssentCallback;
import com.afollestad.assent.PermissionResultSet;


public class GPSTracker extends Service implements android.location.LocationListener {

private Context context;
boolean isGPSEnabled = false;
boolean isNetworkEnabled = false;
boolean canGetLocation = false;

Location location;
double latitude,longitude;



LocationManager locationManager;
AlertDialog.Builder am = new AlertDialog.Builder(this);
public GPSTracker(Context context){
this.context = context;
getLocation();
}
private Location getLocation() {
// TODO Auto-generated method stub
if ( ContextCompat.checkSelfPermission( this, android.Manifest.permission.ACCESS_COARSE_LOCATION ) != PackageManager.PERMISSION_GRANTED ) {

ActivityCompat.requestPermissions( this, new String[] { android.Manifest.permission.ACCESS_COARSE_LOCATION },
LocationService.MY_PERMISSION_ACCESS_COURSE_LOCATION);
}
try{
locationManager = (LocationManager)context.getSystemService(Context.LOCATION_SERVICE);

isGPSEnabled = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);

isNetworkEnabled = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);


if (!isGPSEnabled && !isNetworkEnabled){

} else {
this.canGetLocation = true;

if (isNetworkEnabled){

locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 60000, 3, this);

if (locationManager != null){
location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null){
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}

if (isGPSEnabled){
if (location == null){
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 60000, 3, this);
if (locationManager != null){
location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if (location != null){
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
} else {
showAlertDialog();
}
}
}catch(Exception e){
e.printStackTrace();
}
return location;
}
public void showSettingsAlert(){
AlertDialog.Builder alertDialog = new AlertDialog.Builder(GPSTracker.this);

// Setting Dialog Title
alertDialog.setTitle("GPS is settings");

// Setting Dialog Message
alertDialog.setMessage("GPS is not enabled. Do you want to go to settings menu?");

// Setting Icon to Dialog
//alertDialog.setIcon(R.drawable.delete);

// On pressing Settings button
alertDialog.setPositiveButton("Settings", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,int which) {
Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
startActivity(intent);
dialog.cancel();
}
});

// on pressing cancel button
alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});

// Showing Alert Message
alertDialog.show();
}

public void showAlertDialog(){
am.showAlertDialog(GPSTracker.this, "GPS Setting", "Gps is not enabled. Do you want to enabled it ?", false);
}
public double getLatitude(){
if (location != null){
latitude = location.getLatitude();
}

return latitude;
}

public double getLongitude(){
if (location != null){
longitude = location.getLongitude();
}

return longitude;
}

public boolean canGetLocation(){
return this.canGetLocation;
}
@Override
public void onLocationChanged(Location location) {
// TODO Auto-generated method stub
if (location != null){
this.location = location;
}
}

@Override
public void onProviderDisabled(String provider) {
// TODO Auto-generated method stub

}

@Override
public void onProviderEnabled(String provider) {
// TODO Auto-generated method stub

}

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
// TODO Auto-generated method stub

}

@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}

}

编辑

我想我通过将其更改为清除了第二个

public void showAlertDialog(){
AlertDialog.Builder am = new AlertDialog.Builder(GPSTracker.this);

// Setting Dialog Title
am.setTitle("GPS settings");

// Setting Dialog Message
am.setMessage("GPS is not enabled. Do you want to enable it?");

am.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialogInterface, int i) {
startActivity(new Intent(android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS));
}
});
am.setNegativeButton("No", null);
am .create().show();

最佳答案

在第一个错误中,我认为您只需要 MY_PERMISSION_ACCESS_COURSE_LOCATION 而不是 LocationService.MY_PERMISSION_ACCESS_COURSE_LOCATION

至于第二个错误,通过查看 API 23 Documentation , AlertDialog.Builder 类中没有方法 showAlertDialog

我相信创建对话框的正确方法是像在 showSettingsAlert() 方法中一样使用它。

关于java - 尝试添加棉花糖权限支持时无法解析符号 'LocationService',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35003667/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com