【问题标题】:Cannot resolve symbol 'LocationService' when trying to add marshmallow permission support尝试添加棉花糖权限支持时无法解析符号“LocationService”
【发布时间】:2016-01-25 22:29:55
【问题描述】:

我正在尝试创建一个 GPSTracker 类,我可以从片段运行以获取用户 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();

【问题讨论】:

    标签: java android permissions gps android-6.0-marshmallow


    【解决方案1】:

    在第一个错误我相信你只需要MY_PERMISSION_ACCESS_COURSE_LOCATION 而不是LocationService.MY_PERMISSION_ACCESS_COURSE_LOCATION

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

    我相信创建对话框的正确方法是使用与 showSettingsAlert() 方法相同的方式。

    【讨论】:

    • 第一个,当我摆脱 LocationService 并将其设置为 MY_PERMISSION_ACCESS_COARSE_LOCATION (我注意到一个错字当然!=粗,这令人惊讶地不是问题),然后它无法解析符号 'MY_PERMISSION_ACCESS_COARSE_LOCATION'在第二个我明白你在说什么,但我不知道该怎么做是回应那个,如何做出打开 GPS 的意图
    • 我想我找到了第二个,感谢您对那个的帮助
    【解决方案2】:

    我从其他地方找到了一个解决方案,首先,只需声明一个变量:

    private static final int MY_PERMISSION_ACCESS_COARSE_LOCATION = 11;
    

    并使用它:

    if (ContextCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
        ActivityCompat.requestPermissions(this, new String[]{android.Manifest.permission.ACCESS_COARSE_LOCATION}, MY_PERMISSION_ACCESS_COARSE_LOCATION);
    }
    

    对我有用,希望对你有帮助。

    【讨论】:

      猜你喜欢
      • 2016-05-05
      • 1970-01-01
      • 2017-05-12
      • 1970-01-01
      • 2016-02-13
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多