เปิดบริการตำแหน่งโดยไม่ต้องไปที่หน้าการตั้งค่า


123

เมื่อเทียบกับวิธีการดั้งเดิมในการแจ้งให้ผู้ใช้ไปที่หน้าการตั้งค่าและเปิดใช้งานบริการระบุตำแหน่งและกลับมาอีกครั้งฉันสังเกตเห็นวิธีที่ง่ายกว่าในการทำเช่นเดียวกันในแอปล่าสุดบางแอป

อ้างถึงภาพหน้าจอด้านล่างมันจะแจ้งให้ผู้ใช้เปิดใช้งานบริการระบุตำแหน่งด้วยการคลิกเพียงครั้งเดียวและใช้งานได้ในแอพเหล่านั้น

ฉันจะบรรลุสิ่งเดียวกันได้อย่างไร?

ใส่คำอธิบายภาพที่นี่


14
ผู้มีสิทธิเลือกตั้งเชิงลบสามารถให้เหตุผลได้หรือไม่?
GAMA

4
ขอบคุณที่ถามคำถามนี้ โหวตขึ้น
Lokesh Pandey

1
@GAMA นี่คือวิธีการทำงานของ stackoverflow! ผู้คนไม่ต้องการเหตุผลในการลงคะแนนเสียง เป็นชุมชนที่ไม่เป็นมิตรและยิ่งใหญ่ในเวลาเดียวกัน!

คำตอบ:


150

กล่องโต้ตอบนี้สร้างโดยLocationSettingsRequest.Builder ที่มีอยู่ในบริการ Google Play

คุณต้องเพิ่มการอ้างอิงให้กับแอปของคุณbuild.gradle:

compile 'com.google.android.gms:play-services-location:10.0.1'

จากนั้นคุณสามารถใช้ตัวอย่างขั้นต่ำนี้:

private void displayLocationSettingsRequest(Context context) {
    GoogleApiClient googleApiClient = new GoogleApiClient.Builder(context)
            .addApi(LocationServices.API).build();
    googleApiClient.connect();

    LocationRequest locationRequest = LocationRequest.create();
    locationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
    locationRequest.setInterval(10000);
    locationRequest.setFastestInterval(10000 / 2);

    LocationSettingsRequest.Builder builder = new LocationSettingsRequest.Builder().addLocationRequest(locationRequest);
    builder.setAlwaysShow(true);

    PendingResult<LocationSettingsResult> result = LocationServices.SettingsApi.checkLocationSettings(googleApiClient, builder.build());
    result.setResultCallback(new ResultCallback<LocationSettingsResult>() {
        @Override
        public void onResult(LocationSettingsResult result) {
            final Status status = result.getStatus();
            switch (status.getStatusCode()) {
                case LocationSettingsStatusCodes.SUCCESS:
                    Log.i(TAG, "All location settings are satisfied.");
                    break;
                case LocationSettingsStatusCodes.RESOLUTION_REQUIRED:
                    Log.i(TAG, "Location settings are not satisfied. Show the user a dialog to upgrade location settings ");

                    try {
                        // Show the dialog by calling startResolutionForResult(), and check the result
                        // in onActivityResult().
                        status.startResolutionForResult(MainActivity.this, REQUEST_CHECK_SETTINGS);
                    } catch (IntentSender.SendIntentException e) {
                        Log.i(TAG, "PendingIntent unable to execute request.");
                    }
                    break;
                case LocationSettingsStatusCodes.SETTINGS_CHANGE_UNAVAILABLE:
                    Log.i(TAG, "Location settings are inadequate, and cannot be fixed here. Dialog not created.");
                    break;
            }
        }
    });
}

คุณสามารถหาตัวอย่างที่สมบูรณ์ที่นี่


1
ฉันขอโทษ แต่ฉันไม่เข้าใจสองบรรทัดแรก:You need to add a dependency to your app build.gradle: compile 'com.google.android.gms:play-services:8.1.0'
GAMA

คุณสามารถดูข้อมูลเพิ่มเติมเกี่ยวกับวิธีการตั้งค่าบริการ Google Play ได้ที่นี่
Mattia Maestrini

ที่จะbuild.gradleอยู่?
GAMA

ภายในไดเร็กทอรีโมดูลแอปพลิเคชันของคุณ โดยปกติชื่อไดเรกทอรีคือapp
Mattia Maestrini

3
ตอนนี้ SettingsApi เลิกใช้แล้ว
Sagar Kacha

27

ทำตามขั้นตอนที่ระบุด้านล่าง

1)สร้างLocationRequestตามความต้องการของคุณ

LocationRequest mLocationRequest = LocationRequest.create()
           .setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY)
           .setInterval(10 * 1000)
           .setFastestInterval(1 * 1000);

2)สร้างไฟล์LocationSettingsRequest.Builder

LocationSettingsRequest.Builder settingsBuilder = new LocationSettingsRequest.Builder()
               .addLocationRequest(mLocationRequest);
settingsBuilder.setAlwaysShow(true);

3)รับLocationSettingsResponse Taskใช้รหัสต่อไปนี้

Task<LocationSettingsResponse> result = LocationServices.getSettingsClient(this)
              .checkLocationSettings(settingsBuilder.build());

หมายเหตุ: LocationServices.SettingsApiเลิกใช้แล้วให้ใช้SettingsClientแทน

4)เพิ่ม a OnCompleteListenerเพื่อรับผลลัพธ์จากงานเมื่อTaskเสร็จสิ้นลูกค้าสามารถตรวจสอบการตั้งค่าตำแหน่งโดยดูรหัสสถานะจากLocationSettingsResponseวัตถุ

result.addOnCompleteListener(new OnCompleteListener<LocationSettingsResponse>() {
    @Override
    public void onComplete(@NonNull Task<LocationSettingsResponse> task) {
    try {
        LocationSettingsResponse response = 
                          task.getResult(ApiException.class);
        } catch (ApiException ex) {
            switch (ex.getStatusCode()) {
                case LocationSettingsStatusCodes.RESOLUTION_REQUIRED:
                    try {
                        ResolvableApiException resolvableApiException = 
                                 (ResolvableApiException) ex;
                            resolvableApiException
                                   .startResolutionForResult(MapsActivity.this, 
                                         LOCATION_SETTINGS_REQUEST);
                    } catch (IntentSender.SendIntentException e) {

                    }
                    break;
                case LocationSettingsStatusCodes.SETTINGS_CHANGE_UNAVAILABLE:

                    break;
            }
        }
    }
});  

กรณีที่ 1: LocationSettingsStatusCodes.RESOLUTION_REQUIREDไม่ได้เปิดใช้งานตำแหน่ง แต่เราสามารถขอให้ผู้ใช้เปิดใช้งานตำแหน่งโดยแจ้งให้เขาเปิดตำแหน่งด้วยกล่องโต้ตอบ (โดยการโทรstartResolutionForResult)

คำขอการตั้งค่าตำแหน่งแผนที่ Google

กรณีที่ 2: LocationSettingsStatusCodes.SETTINGS_CHANGE_UNAVAILABLEไม่พอใจการตั้งค่าตำแหน่ง อย่างไรก็ตามเราไม่มีวิธีแก้ไขการตั้งค่าดังนั้นเราจึงไม่แสดงกล่องโต้ตอบ

5) OnActivityResultเราสามารถรับการดำเนินการของผู้ใช้ในกล่องโต้ตอบการตั้งค่าตำแหน่ง RESULT_OK=> ผู้ใช้เปิดตำแหน่ง RESULT_CANCELLED- ผู้ใช้ปฏิเสธคำขอตั้งค่าตำแหน่ง


11

มันทำงานคล้ายกับแผนที่ Google

เพิ่มการพึ่งพาในไฟล์ build.gradle

compile 'com.google.android.gms:play-services:8.3.0'

นี่หรือนั่น

compile 'com.google.android.gms:play-services-location:10.0.1'

ใส่คำอธิบายภาพที่นี่

import android.content.Context;
import android.content.IntentSender;
import android.location.LocationManager;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.common.api.PendingResult;
import com.google.android.gms.common.api.ResultCallback;
import com.google.android.gms.common.api.Status;
import com.google.android.gms.location.LocationRequest;
import com.google.android.gms.location.LocationServices;
import com.google.android.gms.location.LocationSettingsRequest;
import com.google.android.gms.location.LocationSettingsResult;
import com.google.android.gms.location.LocationSettingsStatusCodes;

import java.util.List;

public class LocationOnOff_Similar_To_Google_Maps extends AppCompatActivity {

    protected static final String TAG = "LocationOnOff";

    private GoogleApiClient googleApiClient;
    final static int REQUEST_LOCATION = 199;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        this.setFinishOnTouchOutside(true);

        // Todo Location Already on  ... start
        final LocationManager manager = (LocationManager) LocationOnOff_Similar_To_Google_Maps.this.getSystemService(Context.LOCATION_SERVICE);
        if (manager.isProviderEnabled(LocationManager.GPS_PROVIDER) && hasGPSDevice(LocationOnOff_Similar_To_Google_Maps.this)) {
            Toast.makeText(LocationOnOff_Similar_To_Google_Maps.this,"Gps already enabled",Toast.LENGTH_SHORT).show();
            finish();
        }
        // Todo Location Already on  ... end

        if(!hasGPSDevice(LocationOnOff_Similar_To_Google_Maps.this)){
            Toast.makeText(LocationOnOff_Similar_To_Google_Maps.this,"Gps not Supported",Toast.LENGTH_SHORT).show();
        }

        if (!manager.isProviderEnabled(LocationManager.GPS_PROVIDER) && hasGPSDevice(LocationOnOff_Similar_To_Google_Maps.this)) {
            Log.e("keshav","Gps already enabled");
            Toast.makeText(LocationOnOff_Similar_To_Google_Maps.this,"Gps not enabled",Toast.LENGTH_SHORT).show();
            enableLoc();
        }else{
            Log.e("keshav","Gps already enabled");
            Toast.makeText(LocationOnOff_Similar_To_Google_Maps.this,"Gps already enabled",Toast.LENGTH_SHORT).show();
        }
    }


    private boolean hasGPSDevice(Context context) {
        final LocationManager mgr = (LocationManager) context
                .getSystemService(Context.LOCATION_SERVICE);
        if (mgr == null)
            return false;
        final List<String> providers = mgr.getAllProviders();
        if (providers == null)
            return false;
        return providers.contains(LocationManager.GPS_PROVIDER);
    }

    private void enableLoc() {

        if (googleApiClient == null) {
            googleApiClient = new GoogleApiClient.Builder(LocationOnOff_Similar_To_Google_Maps.this)
                    .addApi(LocationServices.API)
                    .addConnectionCallbacks(new GoogleApiClient.ConnectionCallbacks() {
                        @Override
                        public void onConnected(Bundle bundle) {

                        }

                        @Override
                        public void onConnectionSuspended(int i) {
                            googleApiClient.connect();
                        }
                    })
                    .addOnConnectionFailedListener(new GoogleApiClient.OnConnectionFailedListener() {
                        @Override
                        public void onConnectionFailed(ConnectionResult connectionResult) {

                            Log.d("Location error","Location error " + connectionResult.getErrorCode());
                        }
                    }).build();
            googleApiClient.connect();

            LocationRequest locationRequest = LocationRequest.create();
            locationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
            locationRequest.setInterval(30 * 1000);
            locationRequest.setFastestInterval(5 * 1000);
            LocationSettingsRequest.Builder builder = new LocationSettingsRequest.Builder()
                    .addLocationRequest(locationRequest);

            builder.setAlwaysShow(true);

            PendingResult<LocationSettingsResult> result =
                    LocationServices.SettingsApi.checkLocationSettings(googleApiClient, builder.build());
            result.setResultCallback(new ResultCallback<LocationSettingsResult>() {
                @Override
                public void onResult(LocationSettingsResult result) {
                    final Status status = result.getStatus();
                    switch (status.getStatusCode()) {
                        case LocationSettingsStatusCodes.RESOLUTION_REQUIRED:
                            try {
                                // Show the dialog by calling startResolutionForResult(),
                                // and check the result in onActivityResult().
                                status.startResolutionForResult(LocationOnOff_Similar_To_Google_Maps.this, REQUEST_LOCATION);

                                finish();
                            } catch (IntentSender.SendIntentException e) {
                                // Ignore the error.
                            }
                            break;
                    }
                }
            });
        }
    }

}

2
SettingsApi ถูกยกเลิกแล้ว
Sagar Kacha

2
SettingsApi เลิกใช้งานแล้ว ตอนนี้ใช้ SettingsClient: developers.google.com/android/reference/com/google/android/gms/…
Rishabh Chandel

9
implementation 'com.google.android.gms:play-services-location:16.0.0'

การประกาศตัวแปร

private SettingsClient mSettingsClient;
private LocationSettingsRequest mLocationSettingsRequest;
private static final int REQUEST_CHECK_SETTINGS = 214;
private static final int REQUEST_ENABLE_GPS = 516;

เปิดกล่องโต้ตอบโดยใช้รหัสด้านล่าง

LocationSettingsRequest.Builder builder = new LocationSettingsRequest.Builder();
builder.addLocationRequest(new LocationRequest().setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY));
builder.setAlwaysShow(true);
mLocationSettingsRequest = builder.build();

mSettingsClient = LocationServices.getSettingsClient(YourActivity.this);

mSettingsClient
    .checkLocationSettings(mLocationSettingsRequest)
    .addOnSuccessListener(new OnSuccessListener<LocationSettingsResponse>() {
        @Override
        public void onSuccess(LocationSettingsResponse locationSettingsResponse) {
            //Success Perform Task Here
        }
    })
    .addOnFailureListener(new OnFailureListener() {
        @Override
        public void onFailure(@NonNull Exception e) {
            int statusCode = ((ApiException) e).getStatusCode();
            switch (statusCode) {
                case LocationSettingsStatusCodes.RESOLUTION_REQUIRED:
                    try {
                        ResolvableApiException rae = (ResolvableApiException) e;
                        rae.startResolutionForResult(YourActivity.this, REQUEST_CHECK_SETTINGS);
                    } catch (IntentSender.SendIntentException sie) {
                        Log.e("GPS","Unable to execute request.");
                    }
                    break;
                case LocationSettingsStatusCodes.SETTINGS_CHANGE_UNAVAILABLE:
                    Log.e("GPS","Location settings are inadequate, and cannot be fixed here. Fix in Settings.");
            }
        }
    })
    .addOnCanceledListener(new OnCanceledListener() {
        @Override
        public void onCanceled() {
            Log.e("GPS","checkLocationSettings -> onCanceled");
        }
    });

onActivityResult

@Override
public void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    if (requestCode == REQUEST_CHECK_SETTINGS) {
        switch (resultCode) {
            case Activity.RESULT_OK:
                //Success Perform Task Here
                break;
            case Activity.RESULT_CANCELED:
                Log.e("GPS","User denied to access location");
                openGpsEnableSetting();
                break;
        }
    } else if (requestCode == REQUEST_ENABLE_GPS) {
        LocationManager locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
        boolean isGpsEnabled = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);

        if (!isGpsEnabled) {
            openGpsEnableSetting();
        } else {
            navigateToUser();
        }
    }
}

private void openGpsEnableSetting() {
    Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
    startActivityForResult(intent, REQUEST_ENABLE_GPS);
}   

ขอบคุณ! หากคุณใช้รหัสนี้ในส่วนย่อยโปรดดูstackoverflow.com/a/39579124/2914140 : แทนที่จะrae.startResolutionForResult(activity, REQUEST_CHECK_SETTINGS)เรียกstartIntentSenderForResult(rae.getResolution().getIntentSender(), REQUEST_CHECK_SETTINGS, null, 0, 0, 0, null)มิฉะนั้นonActivityResult()จะไม่ถูกเรียก
CoolMind

@CoolMind Thanks อาจใช้สำหรับคนที่ต้องการชิ้นส่วนนี้
Ketan Ramani

@CoolMind เป็นไปได้ไหมที่จะใช้สิ่งที่คล้ายกับstartIntentSenderForResultในวิธีนี้openGpsEnableSetting()?
Aliton Oliveira

@AlitonOliveira คุณช่วยอธิบายรายละเอียดได้ไหม ในโค้ดopenGpsEnableSetting()เพียงแค่เริ่มกล่องโต้ตอบเพื่อเปิดใช้งานการตั้งค่า GPS หลังจากเสร็จสิ้นเรียกว่ามีonActivityResult() requestCode == REQUEST_ENABLE_GPS
CoolMind

onActivityResult()ถูกเรียกจากกิจกรรมและฉันสงสัยว่าเป็นไปได้ไหมที่จะคืนผลลัพธ์ให้เป็นFragmentแบบstartIntentSenderForResultนี้
Aliton Oliveira

8

ขอบคุณ Mattia Maestrini +1

สารละลาย Xamarin:

using Android.Gms.Common.Apis;
using Android.Gms.Location;

public const int REQUEST_CHECK_SETTINGS = 0x1;

private void DisplayLocationSettingsRequest()
{
    var googleApiClient = new GoogleApiClient.Builder(this).AddApi(LocationServices.API).Build();
    googleApiClient.Connect();

    var locationRequest = LocationRequest.Create();
    locationRequest.SetPriority(LocationRequest.PriorityHighAccuracy);
    locationRequest.SetInterval(10000);
    locationRequest.SetFastestInterval(10000 / 2);

    var builder = new LocationSettingsRequest.Builder().AddLocationRequest(locationRequest);
    builder.SetAlwaysShow(true);

    var result = LocationServices.SettingsApi.CheckLocationSettings(googleApiClient, builder.Build());
    result.SetResultCallback((LocationSettingsResult callback) =>
    {
        switch (callback.Status.StatusCode)
        {
            case LocationSettingsStatusCodes.Success:
                {
                    DoStuffWithLocation();
                    break;
                }
            case LocationSettingsStatusCodes.ResolutionRequired:
                {
                    try
                    {
                        // Show the dialog by calling startResolutionForResult(), and check the result
                        // in onActivityResult().
                        callback.Status.StartResolutionForResult(this, REQUEST_CHECK_SETTINGS);
                    }
                    catch (IntentSender.SendIntentException e)
                    {
                    }

                    break;
                }
            default:
                {
                    // If all else fails, take the user to the android location settings
                    StartActivity(new Intent(Android.Provider.Settings.ActionLocationSourceSettings));
                    break;
                }
        }
    });
}

protected override void OnActivityResult(int requestCode, Android.App.Result resultCode, Intent data)
{
    switch (requestCode)
    {
        case REQUEST_CHECK_SETTINGS:
            {
                switch (resultCode)
                {
                    case Android.App.Result.Ok:
                        {
                            DoStuffWithLocation();
                            break;
                        }
                    case Android.App.Result.Canceled:
                        {
                            //No location
                            break;
                        }
                }
                break;
            }
    }
}

บันทึก:

สิ่งนี้จะใช้ไม่ได้กับ Huawei หรืออุปกรณ์อื่น ๆ ที่ไม่ได้ติดตั้งบริการของ Google


ไม่ทำงาน !! คุณช่วยแบ่งปันรหัสที่สมบูรณ์ได้ไหม
Omkar

ฉันพยายามเรียกวิธี DisplayLocationSettingsRequest () จากวิธี OnCreate ของกิจกรรม Android แต่น่าเสียดายที่ฉันไม่สามารถดูป๊อปอัป Locationettingrequest ซึ่งเปิดใช้ Location ได้ คุณช่วยฉันออกไปได้ไหม
Omkar

@Omkar คุณติดตั้ง Xamarin.GooglePlayServices.Location ผ่าน Nuget หรือไม่? คุณรวมสองบรรทัดด้านบนusing android.Gms.Common.Apis; using Android.Gms.Location;หรือไม่ หลังจากโทรLocationServices.SettingsApi.CheckLocationSettingsแล้วคุณจะได้รับการติดต่อกลับภายในresult.SetResultCallback(หรือไม่? วางจุดพักที่แต่ละจุดและตรวจสอบว่าโค้ดกำลังทำอะไร
ปิแอร์

ใช่ฉันได้เพิ่มข้อกำหนดเบื้องต้นทั้งหมดแล้ว และฉันได้รับผลลัพธ์เป็น Id = 1, Status = WaitingForActivation, Method = (null) แต่เวลารอนี้ไม่มีที่สิ้นสุดเพราะรอมานานและไม่ได้รับผล
Omkar

4

Android Marshmallow 6 รองรับการอนุญาตรันไทม์ สิทธิ์รันไทม์ใช้งานได้กับ Marshmallow เท่านั้นและใน Pre-Marshmallow ก็ยังใช้งานได้เหมือนเดิม

คุณสามารถเรียนรู้เพิ่มเติมได้ในวิดีโออย่างเป็นทางการของนักพัฒนา Android

https://www.youtube.com/watch?v=C8lUdPVSzDk

และการขออนุญาต: http://developer.android.com/training/permissions/requesting.html


Marshmallow API มีไว้เพื่อการพัฒนาหรือไม่
GAMA

นั่นหมายความว่าเวิร์กโฟลว์ที่แสดงผ่านภาพหน้าจอสามารถทำได้เฉพาะ Marshmallow และใหม่กว่า?
GAMA

ใช่ตามที่ระบุไว้ในเอกสารเป็น API ระดับ 23 ดังนั้นจึงใช้ได้กับ Marshmallow และใหม่กว่าเท่านั้น
Sharj

วิธีใดก็ได้ที่จะบรรลุพฤติกรรมเดียวกันในกล่องโต้ตอบที่กำหนดเองของฉัน
Srishti Roy

4

ขอบคุณ Mattia Maestrini สำหรับคำตอบฉันต้องการเพิ่มการใช้งาน

compile 'com.google.android.gms:play-services-location:8.1.0'

ก็พอเพียง วิธีนี้จะป้องกันไม่ให้แอปของคุณรวมถึงไลบรารีที่ไม่จำเป็นและช่วยในการรักษาจำนวนวิธีของคุณให้ต่ำ


2

โซลูชัน Kotlin

เพิ่ม build.gradle(Module:app)

implementation 'com.google.android.gms:play-services-location:17.0.0'
implementation 'com.google.android.gms:play-services-maps:17.0.0'

หลังจากนั้นสร้างฟังก์ชันนี้

fun enablegps() {

    val mLocationRequest = LocationRequest.create()
        .setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY)
        .setInterval(2000)
        .setFastestInterval(1000)

    val settingsBuilder = LocationSettingsRequest.Builder()
        .addLocationRequest(mLocationRequest)
    settingsBuilder.setAlwaysShow(true)

    val result = LocationServices.getSettingsClient(this).checkLocationSettings(settingsBuilder.build())
    result.addOnCompleteListener { task ->

        //getting the status code from exception
        try {
            task.getResult(ApiException::class.java)
        } catch (ex: ApiException) {

            when (ex.statusCode) {

                LocationSettingsStatusCodes.RESOLUTION_REQUIRED -> try {

                    Toast.makeText(this,"GPS IS OFF",Toast.LENGTH_SHORT).show()

                    // Show the dialog by calling startResolutionForResult(), and check the result
                    // in onActivityResult().
                    val resolvableApiException = ex as ResolvableApiException
                    resolvableApiException.startResolutionForResult(this,REQUEST_CHECK_SETTINGS
                    )
                } catch (e: IntentSender.SendIntentException) {
                    Toast.makeText(this,"PendingIntent unable to execute request.",Toast.LENGTH_SHORT).show()

                }

                LocationSettingsStatusCodes.SETTINGS_CHANGE_UNAVAILABLE -> {

                    Toast.makeText(
                        this,
                        "Something is wrong in your GPS",
                        Toast.LENGTH_SHORT
                    ).show()

                }


            }
        }



    }


}

1

ด้วยการอัปเดต Marshmallow ล่าสุดแม้ว่าจะเปิดการตั้งค่าตำแหน่งไว้แอปของคุณจะต้องขออนุญาตอย่างชัดเจน วิธีที่แนะนำในการดำเนินการนี้คือการแสดงส่วนสิทธิ์ของแอปของคุณซึ่งผู้ใช้สามารถสลับการอนุญาตได้ตามต้องการ ข้อมูลโค้ดสำหรับการดำเนินการมีดังต่อไปนี้:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {if (this.checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {final AlertDialog.Builder builder = new AlertDialog.Builder(this);
        builder.setTitle("Location Permission");
        builder.setMessage("The app needs location permissions. Please grant this permission to continue using the features of the app.");
        builder.setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialogInterface, int i) {
                requestPermissions(new String[]{Manifest.permission.ACCESS_COARSE_LOCATION}, PERMISSION_REQUEST_COARSE_LOCATION);}
        });
        builder.setNegativeButton(android.R.string.no, null);
        builder.show();
    }
} else {
    // do programatically as show in the other answer 
}

และแทนที่onRequestPermissionsResultวิธีการดังต่อไปนี้:

@Override
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
        switch (requestCode) {
            case PERMISSION_REQUEST_COARSE_LOCATION: {
                if (grantResults[0] == PackageManager.PERMISSION_GRANTED) {
                    Log.d(TAG, "coarse location permission granted");
                } else {
                    Intent intent = new Intent();
                    intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
                    Uri uri = Uri.fromParts("package", getPackageName(), null);
                    intent.setData(uri);
                    startActivity(intent);
                }
            }
        }
    }

อีกวิธีหนึ่งคือคุณสามารถใช้SettingsApiเพื่อสอบถามผู้ให้บริการตำแหน่งที่เปิดใช้งาน หากไม่มีการเปิดใช้งานคุณสามารถแจ้งให้กล่องโต้ตอบเปลี่ยนการตั้งค่าจากในแอป


1

วิธีที่ง่ายที่สุดที่ฉันพบในระหว่างการวิจัยคือการสร้างคลาส Util สำหรับขั้นตอนการขอตำแหน่งนี้จากนั้นเรียกให้เปิด gps ให้เรา

โปรดตรวจสอบบล็อกนี้! มันเล่าเรื่องทั้งหมด

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.