【问题标题】:Android getSystemServices is undefined in Fragment? [duplicate]Android getSystemServices 在 Fragment 中未定义? [复制]
【发布时间】:2020-12-22 11:37:37
【问题描述】:

我正在尝试在片段中使用地理定位,并在初始化 (LocationManager)getSystemService(LOCATION_SERVICE) 时出错。

@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    SupportMapFragment mapFragment =
            (SupportMapFragment) getChildFragmentManager().findFragmentById(R.id.map);
    if (mapFragment != null) {
        mapFragment.getMapAsync(callback);

        location = (LocationManager)getSystemService(LOCATION_SERVICE);

        if (ActivityCompat.checkSelfPermission(getActivity(), Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(getActivity(), Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
            requestPermissions(new String[]{Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION}, 12);
            return;
        }

        location.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, new LocationListener() {
            @Override
            public void onLocationChanged(@NonNull Location location) {


                String title = "";
                double lat = location.getLatitude();
                double longitude = location.getLongitude();

                try {
                    Geocoder geo = new Geocoder(getActivity());
                    List<Address> address = geo.getFromLocation(lat, longitude, 1);
                    title = address.get(0).getCountryName() + " , " + address.get(0).getLocality();


                } catch (IOException e) {
                    e.printStackTrace();
                }


                LatLng mylocaion = new LatLng(lat, longitude);
                mMap.addMarker(new MarkerOptions().position(mylocaion).title(title));
                mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(mylocaion, 10.2f));


            }
        });


        location.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, new LocationListener() {
            @Override
            public void onLocationChanged(@NonNull Location location) {


                String title = "";
                double lat = location.getLatitude();
                double longitude = location.getLongitude();


                try {
                    Geocoder geo = new Geocoder(getActivity());
                    List<Address> address = geo.getFromLocation(lat, longitude, 1);
// I'm trying to use geolocation in fragments and getting error while initialization  (LocationManager)getSystemService(LOCATION_SERVICE). 
                    title = address.get(0).getCountryName() + " , " + address.get(0).getLocality();



                } catch (IOException e) {
                    e.printStackTrace();
                }


                LatLng mylocaion = new LatLng(lat, longitude);
                mMap.addMarker(new MarkerOptions().position(mylocaion).title(title));
                mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(mylocaion, 10.2f));


            }
        });

    }
}

【问题讨论】:

  • 在此之前尝试使用 getContext() 或 getActivity()。您将需要片段中的上下文。

标签: android android-maps


【解决方案1】:

getSystemService() 替换为requireContext().getSystemService()

【讨论】:

    【解决方案2】:

    在此之前尝试使用 getContext() 或 getActivity()。您将需要片段中的上下文。

    也看看这个。 getSystemServices is undefined when called in a Fragment?

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2014-01-25
      • 1970-01-01
      • 1970-01-01
      • 2010-12-28
      • 2015-09-23
      • 1970-01-01
      相关资源
      最近更新 更多