0

このライブラリを使用してユーザーの現在地を取得しようとしています。

コードは Android M より前のバージョンで正常に場所を取得していますが、Android Marshmallow を搭載したデバイスでアプリを起動すると、コードの一部が実行されません!

私は onCreate() メソッドでこのコードを書きました:

ReactiveLocationProvider locationProvider = new ReactiveLocationProvider(getBaseContext());
locationProvider.getLastKnownLocation()
        .subscribe(new Action1<Location>() {
            @Override
            public void call(Location location) {
                currentLatDouble = location.getLatitude();
                currentLngDouble = location.getLongitude();
                Toast.makeText(getBaseContext(), "User's location retrieved using library", Toast.LENGTH_SHORT).show();
            }
        });

Android マシュマロ デバイスでアプリを実行すると、このトーストが表示されません。Toast.makeText(getBaseContext(), "User's location retrieved using library", Toast.LENGTH_SHORT).show();これは、このコードが実行されていないことを意味します。

このコードを書く前に、以下のコードを使用して許可を求めました。

int hasWriteContactsPermission = ContextCompat.checkSelfPermission(MainActivity.this, android.Manifest.permission.WRITE_EXTERNAL_STORAGE)
        & ContextCompat.checkSelfPermission(MainActivity.this, android.Manifest.permission.ACCESS_FINE_LOCATION)
        & ContextCompat.checkSelfPermission(MainActivity.this, Manifest.permission.ACCESS_COARSE_LOCATION)
        & ContextCompat.checkSelfPermission(MainActivity.this, Manifest.permission.WRITE_SETTINGS);

if (hasWriteContactsPermission != PackageManager.PERMISSION_GRANTED) {
    if (ActivityCompat.checkSelfPermission(getBaseContext(), Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED
            && ActivityCompat.checkSelfPermission(getBaseContext(), Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED
            && ActivityCompat.checkSelfPermission(getBaseContext(), Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED
            && ActivityCompat.checkSelfPermission(getBaseContext(), Manifest.permission.WRITE_SETTINGS) != PackageManager.PERMISSION_GRANTED) {
        // TODO: Consider calling
        //    ActivityCompat#requestPermissions
        // here to request the missing permissions, and then overriding
        //   public void onRequestPermissionsResult(int requestCode, String[] permissions,
        //                                          int[] grantResults)
        // to handle the case where the user grants the permission. See the documentation
        // for ActivityCompat#requestPermissions for more details.
        if (!ActivityCompat.shouldShowRequestPermissionRationale(MainActivity.this, Manifest.permission.WRITE_EXTERNAL_STORAGE)
                && !ActivityCompat.shouldShowRequestPermissionRationale(MainActivity.this, Manifest.permission.ACCESS_FINE_LOCATION)
                && !ActivityCompat.shouldShowRequestPermissionRationale(MainActivity.this, Manifest.permission.ACCESS_COARSE_LOCATION)
                && !ActivityCompat.shouldShowRequestPermissionRationale(MainActivity.this, Manifest.permission.WRITE_SETTINGS)) {
            showMessageOKCancel("You need to allow access to few permissions so that the app can work as expected.",
                    new DialogInterface.OnClickListener() {
                        @Override
                        public void onClick(DialogInterface dialog, int which) {
                            ActivityCompat.requestPermissions(MainActivity.this,
                                    new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE,
                                                 Manifest.permission.ACCESS_FINE_LOCATION,
                                                 Manifest.permission.ACCESS_COARSE_LOCATION,
                                                 Manifest.permission.WRITE_SETTINGS},
                                    REQUEST_RUNTIME_PERMISSION);
                        }
                    });
            return;
        }
        ActivityCompat.requestPermissions(MainActivity.this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE,
                                                                          Manifest.permission.ACCESS_FINE_LOCATION,
                                                                          Manifest.permission.ACCESS_COARSE_LOCATION,
                                                                          Manifest.permission.WRITE_SETTINGS},
                REQUEST_RUNTIME_PERMISSION);
        return;
    }
}

onRequestPermissionsResult()のコードは次のとおりです。

@Override
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
    switch (requestCode) {
        case REQUEST_RUNTIME_PERMISSION:
            if (grantResults[0] == PackageManager.PERMISSION_GRANTED) {
                // Permission Granted
                ReactiveLocationProvider locationProvider = new ReactiveLocationProvider(getBaseContext());
                locationProvider.getLastKnownLocation()
                        .subscribe(new Action1<Location>() {
                            @Override
                            public void call(Location location) {
                                currentLatDouble = location.getLatitude();
                                currentLngDouble = location.getLongitude();
                                Toast.makeText(getBaseContext(), "User's location retrieved using library", Toast.LENGTH_SHORT).show();
                            }
                        });
                Handler handler = new Handler();
                handler.postDelayed(new Runnable() {
                    @Override
                    public void run() {
                        if (currentLatDouble != null || currentLngDouble != null ) {
                            retrieveHRequests();
                            retrieveUserCounterA();
                            retrieveUserCounterP();
                        } else {
                            ifLocationAvailable();
                        }
                    }
                }, 2000);
            } else {
                // Permission Denied
                Toast.makeText(MainActivity.this, "Permission denied", Toast.LENGTH_SHORT)
                        .show();
                //helpRequestsLoadingDialog.dismiss();
                progressBarLoadingRequests.setVisibility(View.INVISIBLE);

                ReactiveLocationProvider locationProvider = new ReactiveLocationProvider(getBaseContext());
                locationProvider.getLastKnownLocation()
                        .subscribe(new Action1<Location>() {
                            @Override
                            public void call(Location location) {
                                currentLatDouble = location.getLatitude();
                                currentLngDouble = location.getLongitude();
                                Toast.makeText(getBaseContext(), "User's location retrieved using library", Toast.LENGTH_SHORT).show();
                            }
                        });
                Handler handler = new Handler();
                handler.postDelayed(new Runnable() {
                    @Override
                    public void run() {
                        if (currentLatDouble != null || currentLngDouble != null ) {
                            retrieveHRequestWrapper();
                            retrieveUserInfo();
                        } else {
                            ifLocationAvailable();
                        }
                    }
                }, 2000);
            }
            break;
        default:
            super.onRequestPermissionsResult(requestCode, permissions, grantResults);
    }
}

onRequestPermissionResult()の場合でも場所を取得するコードを作成しましたPERMISSION_GRANTEDが、Android マシュマロ バージョンでは何も起こらず、場所も取得されません。

ここで何が問題なのか教えてください!

4

0 に答える 0