收到“未处理的异常:用户拒绝访问设备位置的权限”

Deb*_*Sil 2 geolocation flutter

经过努力并花费大量时间后,我发现以下对我有用的解决方案:

Deb*_*Sil 6

以下分步过程可能会有所帮助:

pubspec.yaml

在依赖项下添加地理定位器:^8.0.1:

dependencies:
  flutter:
    sdk: flutter
 
  cupertino_icons: ^1.0.2
  geolocator: ^8.0.1
Run Code Online (Sandbox Code Playgroud)

AndroidManifest.xml

您将看到以下内容:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.example.get_weather">
Run Code Online (Sandbox Code Playgroud)

在上述代码下添加以下内容:

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.hardware.location.gps" />
Run Code Online (Sandbox Code Playgroud)

主程序.dart

import 'package:flutter/material.dart';
import 'package:get_weather/screens/loading_screen.dart';
 
void main() => runApp(MyApp());
 
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData.dark(),
      home: LoadingScreen(),
    );
  }
}
Run Code Online (Sandbox Code Playgroud)

加载屏幕.dart

import 'package:flutter/material.dart';
import 'package:geolocator/geolocator.dart';
 
class LoadingScreen extends StatefulWidget {
  @override
  _LoadingScreenState createState() => _LoadingScreenState();
}
 
class _LoadingScreenState extends State<LoadingScreen> {
  void getLocation() async {
    bool serviceEnabled;
    LocationPermission permission;
 
    // Test if location services are enabled.
    serviceEnabled = await Geolocator.isLocationServiceEnabled();
    if (!serviceEnabled) {
      // Location services are not enabled don't continue
      // accessing the position and request users of the
      // App to enable the location services.
      return Future.error('Location services are disabled.');
    }
 
    permission = await Geolocator.checkPermission();
    if (permission == LocationPermission.denied) {
      permission = await Geolocator.requestPermission();
      if (permission == LocationPermission.denied) {
        // Permissions are denied, next time you could try
        // requesting permissions again (this is also where
        // Android's shouldShowRequestPermissionRationale
        // returned true. According to Android guidelines
        // your App should show an explanatory UI now.
        return Future.error('Location permissions are denied');
      }
    }
 
    if (permission == LocationPermission.deniedForever) {
      // Permissions are denied forever, handle appropriately.
      return Future.error(
          'Location permissions are permanently denied, we cannot request permissions.');
    }
 
    Position position = await Geolocator.getCurrentPosition(
        desiredAccuracy: LocationAccuracy.high);
 
    print(position);
  }
 
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: ElevatedButton(
          onPressed: () {
            //Get the current location
            getLocation();
          },
          child: Text('Get Location'),
        ),
      ),
    );
  }
}
Run Code Online (Sandbox Code Playgroud)

loading_screen.dart 中的代码将帮助您解决“用户拒绝权限”问题。