অ্যান্ড্রয়েড লোকেশন সার্ভিসস.ফিউজড লোকেশনএপি হ'ল


89

LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient,mLocationRequest, this);"ফিউজডলোকেশনএপি" কেন ক্রস আউট হয়েছে এবং এটি উল্লেখ করে অবহিত করা হয়েছে তা বুঝতে পারি না । ছবিটি দেখতে এখানে ক্লিক করুন

import android.location.Location;
import android.location.LocationListener;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.FragmentActivity;
import android.os.Bundle;

import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.api.GoogleApiClient;
import com.google.android.gms.location.LocationRequest;
import com.google.android.gms.location.LocationServices;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;

public class MaintainerMapActivity extends FragmentActivity implements OnMapReadyCallback, GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener, LocationListener{

private GoogleMap mMap;
GoogleApiClient mGoogleApiClient;
Location mLastLocaton;
LocationRequest mLocationRequest;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_maintainer_map2);
    // Obtain the SupportMapFragment and get notified when the map is ready to be used.
    SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this);
}


@Override
public void onMapReady(GoogleMap googleMap) {
    mMap = googleMap;

    // Add a marker in Sydney and move the camera
    LatLng sydney = new LatLng(-34, 151);
    mMap.addMarker(new MarkerOptions().position(sydney).title("Marker in Sydney"));
    mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
}

@Override
public void onLocationChanged(Location location) {

}

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {

}

@Override
public void onProviderEnabled(String provider) {

}

@Override
public void onProviderDisabled(String provider) {

}

@Override
public void onConnected(@Nullable Bundle bundle) {
    mLocationRequest = new LocationRequest();
    mLocationRequest.setInterval(1000);
    mLocationRequest.setFastestInterval(1000);
    mLocationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);

    LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient,mLocationRequest, this);
}

@Override
public void onConnectionSuspended(int i) {

}

@Override
public void onConnectionFailed(@NonNull ConnectionResult connectionResult) {

}
}

কীভাবে যদি এটি অবহেলা করা হয় তবে কীভাবে এটির লাইন রয়েছে তা দয়া করে পরীক্ষা করুন যে আমি এই লোকেশন সার্ভিসগুলি ব্যবহার করছি Fফিউজডলোকেশনএপিআই ququestLocationUpdates (mGoogleApiClient, mLocationRequest, এটি);
ওমর হায়াত

@OmarHayat FusedLocationApi ক্রস বাইরে
vvvv

আপনার এই নির্ভরশীলতাগুলি পরীক্ষা করুন যে আমি এই সংকলনটি 'com.google.android.gms: play-পরিষেবাদি-অবস্থান: 9.4.0'
ওমর হায়াত

আপনি এটিকে অনক্রিয়েট মেটোড এম গুগলএপিপি্লিয়েন্টে ব্যবহার করছেন = নতুন গুগলপিপ্লেইস.বিল্ডার (এটি) .এডিএপিআই (লোকেশনসর্পিস.এপিআই) .এডিএডকনিকেশনক্যালব্যাকস (এটি) .ডডঅনকনেকশনফেলডলাইজনার (এটি)। বিল্ড ();
ওমর হায়াত

@ ওমারহায়াত আমি সংকলন 'com.google.android.gms: play-পরিষেবাদি-অবস্থান: ১১.৪.০' ব্যবহার করছিলাম এবং আমি 9.4.0-এ পরিবর্তন করার পরে এটি সমস্যাটি স্থির করে, কেন নম্বরটি পরিবর্তন করার পরে এটি সংশোধন করলেন?
vvvv

উত্তর:


156

আসল উত্তর

FusedLocationProviderApiগুগল প্লে পরিষেবাদির সাম্প্রতিক সংস্করণে অবনতি হওয়ায় এটি ঘটছে । আপনি এটি এখানে পরীক্ষা করতে পারেন । অফিসিয়াল গাইড এখন FusedLocationProviderClient ব্যবহার করার পরামর্শ দেয় । আপনি এখানে বিস্তারিত গাইড খুঁজে পেতে পারেন ।

যেমন ভিতরে জন্য onCreate()বা onViewCreated()একটি তৈরি FusedLocationProviderClientউদাহরণস্বরূপ

কোটলিন

val fusedLocationClient = LocationServices.getFusedLocationProviderClient(requireContext())

এবং সর্বশেষ জ্ঞাত অবস্থানটির অনুরোধের জন্য আপনাকে যা করতে হবে তা হল কল

fusedLocationClient.lastLocation.addOnSuccessListener { location: Location? ->
            location?.let { it: Location ->
                // Logic to handle location object
            } ?: kotlin.run {
                // Handle Null case or Request periodic location update https://developer.android.com/training/location/receive-location-updates
            }
        }

জাভা

FusedLocationProviderClient fusedLocationClient = LocationServices.getFusedLocationProviderClient(requireContext());

এবং

fusedLocationClient.getLastLocation().addOnSuccessListener(requireActivity(), location -> {
        if (location != null) {
            // Logic to handle location object
        } else {
            // Handle null case or Request periodic location update https://developer.android.com/training/location/receive-location-updates
        }
    });

সরল, তাই না?


গুরুত্বপূর্ণ আপডেট (24 অক্টোবর, 2017):

গতকাল গুগল একটি সতর্কতা দিয়ে এর অফিসিয়াল বিকাশকারী পৃষ্ঠা আপডেট করেছে says

দয়া করে FusedLocationProviderApi ক্লাসটি ব্যবহার করা চালিয়ে যান এবং গুগল প্লে পরিষেবাদি 12.0.0 সংস্করণ উপলব্ধ না হওয়া পর্যন্ত ফিউজডলোকেশনপ্রভাইডার ক্লায়েন্টে স্থানান্তর করবেন না, যা 2018 সালের শুরুর দিকে প্রত্যাশিত। সংস্করণ 12.0.0 এর পূর্বে ফিউজডলোকেশনপ্রাইডারক্লায়েন্ট ব্যবহারের ফলে ক্লায়েন্ট অ্যাপটি ক্র্যাশ হয়ে যায় গুগল প্লে পরিষেবাগুলি ডিভাইসে আপডেট করা হয়েছে। এই কারণে আসন্ন যেকোনো অসুবিধার জন্য আমরা ক্ষমাপ্রার্থী।

সতর্কতা সুতরাং আমি মনে করি LocationServices.FusedLocationApiগুগল সমস্যা সমাধান না করা পর্যন্ত আমাদের অবচয় ব্যবহার করা চালিয়ে যাওয়া উচিত ।


সর্বশেষ আপডেট (21 নভেম্বর, 2017):

সতর্কতা এখন চলে গেছে। গুগল প্লে পরিষেবাদি 11.6 নভেম্বর 6, 2017, রিলিজ নোটটি বলেছে: গুগল প্লে পরিষেবাদি আপডেট করা হলে মাঝে মধ্যে ক্র্যাশ হওয়ার কারণ স্থির ফিউজডলোকেশনপ্রোভাডারক্লায়েন্ট সমস্যা।আমি মনে করি প্লে পরিষেবাদিগুলি যখন ব্যাকগ্রাউন্ডে নিজেকে আপডেট করে তখন ক্র্যাশ হবে না। সুতরাং আমরা FusedLocationProviderClientএখন নতুন ব্যবহার করতে পারেন ।


4
গুগল ডক্স কীভাবে এখনও আপনাকে পুরানো এপিআই ব্যবহার করতে বলবে তা আমি পছন্দ করি: developer.android.com/training/location/…
এমএক্সসিএল

getLastLocation () লোকেশন সার্ভিস কি করছে? ফিউজড লোকেশনএপিআই.রেউকেস্টলোকেশনআপডেটস () কী করেছে? এখন অবধি কি অদ্ভুত, ডকুমেন্টেশনটি এখনও সেই পুরানো পথে নির্দেশ করে। এটা বিভ্রান্তিকর. বিকাশকারী.অ্যান্ড্রয়েড
হুয়ান

@ জুয়ানমেন্ডেজ আমি সম্মত তাদের যথাযথ আপ টু ডেট উদাহরণ বজায় রাখার জন্য কাজ করা উচিত। বিটিডব্লিউ getLastLocation()কেবলমাত্র ডিভাইসের সর্বাধিক পরিচিত অবস্থানটি ফিরিয়ে দেয় .. আপনি নতুন requestLocationUpdates(LocationRequest request, PendingIntent callbackIntent)পদ্ধতিতে লোকেশন আপডেটের জন্য অনুরোধ করতে পারেন ।
সোমেশ কুমার

@ সোমেশ কুমার, ধন্যবাদ হ্যাঁ, এই পদ্ধতিটি আমি ব্যবহার করছি। আমি এর মধ্যে 11.2.0 এ আঁকড়ে রয়েছি
জুয়ান

4
@ ভীত হ্যাঁ, সতর্কতা চলে গেছে .. এবং আপনার সরবরাহিত লিঙ্কটিতে আরও বলা হয়েছে যে ব্যবহারকারী অ্যাপ্লিকেশন আপডেট করলে গুগল প্লে পরিষেবাদির নতুন সংস্করণ ক্রাশ হবে না। আমার মনে হয় এখনই আমার উত্তরটি আপডেট করা উচিত।
সোমেশ কুমার

16
   // Better to use GoogleApiClient to show device location. I am using this way in my aap.

    public class SuccessFragment extends Fragment{
        private TextView txtLatitude, txtLongitude, txtAddress;
        // private AddressResultReceiver mResultReceiver;
        // removed here because cause wrong code when implemented and
        // its not necessary like the author says

        //Define fields for Google API Client
        private FusedLocationProviderClient mFusedLocationClient;
        private Location lastLocation;
        private LocationRequest locationRequest;
        private LocationCallback mLocationCallback;

        private static final int REQUEST_PERMISSIONS_REQUEST_CODE = 14;

        @Nullable
        @Override
        public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
            View view = inflater.inflate(R.layout.fragment_location, container, false);

            txtLatitude = (TextView) view.findViewById(R.id.txtLatitude);
            txtLongitude = (TextView) view.findViewById(R.id.txtLongitude);
            txtAddress = (TextView) view.findViewById(R.id.txtAddress);

            // mResultReceiver = new AddressResultReceiver(null);
            // cemented as above explained
            try {
                mFusedLocationClient = LocationServices.getFusedLocationProviderClient(getActivity());
                mFusedLocationClient.getLastLocation()
                        .addOnSuccessListener(getActivity(), new OnSuccessListener<Location>() {
                            @Override
                            public void onSuccess(Location location) {
                                // Got last known location. In some rare situations this can be null.
                                if (location != null) {
                                    // Logic to handle location object
                                    txtLatitude.setText(String.valueOf(location.getLatitude()));
                                    txtLongitude.setText(String.valueOf(location.getLongitude()));
                                    if (mResultReceiver != null)
                                        txtAddress.setText(mResultReceiver.getAddress());
                                }
                            }
                        });
                locationRequest = LocationRequest.create();
                locationRequest.setInterval(5000);
                locationRequest.setFastestInterval(1000);
                if (txtAddress.getText().toString().equals(""))
                    locationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
                else
                    locationRequest.setPriority(LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY);

                mLocationCallback = new LocationCallback() {
                    @Override
                    public void onLocationResult(LocationResult locationResult) {
                        for (Location location : locationResult.getLocations()) {
                            // Update UI with location data
                            txtLatitude.setText(String.valueOf(location.getLatitude()));
                            txtLongitude.setText(String.valueOf(location.getLongitude()));
                        }
                    }

                    ;
                };
            } catch (SecurityException ex) {
                ex.printStackTrace();
            } catch (Exception e) {
                e.printStackTrace();
            }
            return view;
        }

        @Override
        public void onStart() {
            super.onStart();

            if (!checkPermissions()) {
                startLocationUpdates();
                requestPermissions();
            } else {
                getLastLocation();
                startLocationUpdates();
            }
        }

        @Override
        public void onPause() {
            stopLocationUpdates();
            super.onPause();
        }

        /**
         * Return the current state of the permissions needed.
         */
        private boolean checkPermissions() {
            int permissionState = ActivityCompat.checkSelfPermission(getActivity(),
                    Manifest.permission.ACCESS_COARSE_LOCATION);
            return permissionState == PackageManager.PERMISSION_GRANTED;
        }

        private void startLocationPermissionRequest() {
            ActivityCompat.requestPermissions(getActivity(),
                    new String[]{Manifest.permission.ACCESS_COARSE_LOCATION},
                    REQUEST_PERMISSIONS_REQUEST_CODE);
        }


        private void requestPermissions() {
            boolean shouldProvideRationale =
                    ActivityCompat.shouldShowRequestPermissionRationale(getActivity(),
                            Manifest.permission.ACCESS_COARSE_LOCATION);

            // Provide an additional rationale to the user. This would happen if the user denied the
            // request previously, but didn't check the "Don't ask again" checkbox.
            if (shouldProvideRationale) {
                Log.i(TAG, "Displaying permission rationale to provide additional context.");

                showSnackbar(R.string.permission_rationale, android.R.string.ok,
                        new View.OnClickListener() {
                            @Override
                            public void onClick(View view) {
                                // Request permission
                                startLocationPermissionRequest();
                            }
                        });

            } else {
                Log.i(TAG, "Requesting permission");
                // Request permission. It's possible this can be auto answered if device policy
                // sets the permission in a given state or the user denied the permission
                // previously and checked "Never ask again".
                startLocationPermissionRequest();
            }
        }

        /**
         * Callback received when a permissions request has been completed.
         */
        @Override
        public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions,
                                               @NonNull int[] grantResults) {
            Log.i(TAG, "onRequestPermissionResult");
            if (requestCode == REQUEST_PERMISSIONS_REQUEST_CODE) {
                if (grantResults.length <= 0) {
                    // If user interaction was interrupted, the permission request is cancelled and you
                    // receive empty arrays.
                    Log.i(TAG, "User interaction was cancelled.");
                } else if (grantResults[0] == PackageManager.PERMISSION_GRANTED) {
                    // Permission granted.
                    getLastLocation();
                } else {
                    // Permission denied.

                    // Notify the user via a SnackBar that they have rejected a core permission for the
                    // app, which makes the Activity useless. In a real app, core permissions would
                    // typically be best requested during a welcome-screen flow.

                    // Additionally, it is important to remember that a permission might have been
                    // rejected without asking the user for permission (device policy or "Never ask
                    // again" prompts). Therefore, a user interface affordance is typically implemented
                    // when permissions are denied. Otherwise, your app could appear unresponsive to
                    // touches or interactions which have required permissions.
                    showSnackbar(R.string.permission_denied_explanation, R.string.settings,
                            new View.OnClickListener() {
                                @Override
                                public void onClick(View view) {
                                    // Build intent that displays the App settings screen.
                                    Intent intent = new Intent();
                                    intent.setAction(
                                            Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
                                    Uri uri = Uri.fromParts("package",
                                            BuildConfig.APPLICATION_ID, null);
                                    intent.setData(uri);
                                    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                                    startActivity(intent);
                                }
                            });
                }
            }
        }


        /**
         * Provides a simple way of getting a device's location and is well suited for
         * applications that do not require a fine-grained location and that do not need location
         * updates. Gets the best and most recent location currently available, which may be null
         * in rare cases when a location is not available.
         * <p>
         * Note: this method should be called after location permission has been granted.
         */
        @SuppressWarnings("MissingPermission")
        private void getLastLocation() {
            mFusedLocationClient.getLastLocation()
                    .addOnCompleteListener(getActivity(), new OnCompleteListener<Location>() {
                        @Override
                        public void onComplete(@NonNull Task<Location> task) {
                            if (task.isSuccessful() && task.getResult() != null) {
                                lastLocation = task.getResult();

                                txtLatitude.setText(String.valueOf(lastLocation.getLatitude()));
                                txtLongitude.setText(String.valueOf(lastLocation.getLongitude()));

                            } else {
                                Log.w(TAG, "getLastLocation:exception", task.getException());
                                showSnackbar(getString(R.string.no_location_detected));
                            }
                        }
                    });
        }

        private void stopLocationUpdates() {
            mFusedLocationClient.removeLocationUpdates(mLocationCallback);
        }

        private void startLocationUpdates() {
            if (ActivityCompat.checkSelfPermission(getActivity(), Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(getActivity(), Manifest.permission.ACCESS_COARSE_LOCATION) != 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.
                return;
            }
            mFusedLocationClient.requestLocationUpdates(locationRequest, mLocationCallback, null);
        }

        // private void showSnackbar(final String text) {
        //    if (canvasLayout != null) {
        //        Snackbar.make(canvasLayout, text, Snackbar.LENGTH_LONG).show();
        //    }
        //}
        // this also cause wrong code and as I see it dont is necessary
        // because the same method which is really used


        private void showSnackbar(final int mainTextStringId, final int actionStringId,
                                  View.OnClickListener listener) {
            Snackbar.make(getActivity().findViewById(android.R.id.content),
                    getString(mainTextStringId),
                    Snackbar.LENGTH_INDEFINITE)
                    .setAction(getString(actionStringId), listener).show();
        }
    }

এবং আমাদের টুকরা_স্থান। এক্সএমএল

       <?xml version="1.0" encoding="utf-8"?>
       <LinearLayout 
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/locationLayout"
            android:layout_below="@+id/txtAddress"
            android:layout_width="match_parent"
            android:layout_height="@dimen/activity_margin_30dp"
            android:orientation="horizontal">

            <TextView
                android:id="@+id/txtLatitude"
                android:layout_width="@dimen/activity_margin_0dp"
                android:layout_height="@dimen/activity_margin_30dp"
                android:layout_weight="0.5"
                android:gravity="center"
                android:hint="@string/latitude"
                android:textAllCaps="false"
                android:textColorHint="@color/colorPrimaryDark"
                android:textColor="@color/colorPrimaryDark" />

            <TextView
                android:id="@+id/txtLongitude"
                android:layout_width="@dimen/activity_margin_0dp"
                android:layout_height="@dimen/activity_margin_30dp"
                android:layout_weight="0.5"
                android:gravity="center"
                android:hint="@string/longitude"
                android:textAllCaps="false"
                android:textColorHint="@color/colorPrimary"
                android:textColor="@color/colorPrimary" />
        </LinearLayout>

এই লাইন সরান। এবং কোডের বাকী
অংশটি

পরবর্তী বিরতিতে অবস্থান পেতে অক্ষম
ভিওয়াই

@ বিশাল আমি প্রতিটি সময়ে রিয়েলটাইম অবস্থান পাচ্ছি আপনাকে ম্যানিফেস্টে পাশাপাশি ভিতরে কোডের মধ্যে অবস্থানের অনুমতি পরীক্ষা করতে হবে
জোবোফাইভ

আপনার কোডের জন্য ধন্যবাদ। তবে আমার একটি সমস্যা আছে, যদি প্রতি 100 মিটার পরে আমার প্রয়োজন হয় এবং এটি সার্ভারে প্রেরণ করা উচিত তবে আমার কী করা উচিত? সাহায্য করুন.
প্রবীনসিংহ ওয়াঘেলা 12'18

এটির মতো ব্যবহার করুন: অবস্থানআরকিউয়েস্ট = লোকেশনআরএইচ.সি.সি.আর।
জোবোফাইভ


2

হ্যাঁ, এটি অবহেলা করা হয়েছে!
নতুন FusedLocationProviderClient ব্যবহার করার সময় আপনার কয়েকটি পয়েন্টের প্রয়োজন হবে ।

  1. এটি আমদানি হিসাবে আমদানি করুন com.google.android.gms.location.FusedLocationProviderClient;😅
  2. আমি লক্ষ্য করেছি যে আপনি অবস্থানলিস্টনার ইন্টারফেস প্রয়োগ করছেন । MFusedLocationClient.requestLocationUpdates () পদ্ধতিতে এখন এটি প্যারামিটার হিসাবে লোকেশনলিস্টনার নেয় না। আপনি অবস্থানক্যালব্যাক সরবরাহ করতে পারেন । এটি একটি বিমূর্ত শ্রেণি হিসাবে আপনি এটি অবস্থানলিস্টনারের মতো প্রয়োগ করতে পারবেন না। একটি কলব্যাক পদ্ধতি তৈরি করুন এবং গুগলের গাইডে উল্লিখিত 'এটি' এর পরিবর্তে পাস করুন । হিসাবে এটি আমদানিimport com.google.android.gms.location.LocationCallback;
  3. অবস্থানক্যালব্যাকের সাহায্যে আপনার কাছে লোকেশনচেনজড () এর পরিবর্তে লোকেশন রেজাল্ট () হবে । এটি অবস্থান অবজেক্টের পরিবর্তে লোকেশনরসোল্ট অবজেক্টটি প্রদান করে। এই ফলাফল অবজেক্টে সর্বাধিক সাম্প্রতিক অবস্থান উপলভ্য করতে অবস্থানের ফলাফল.গ্যাসলাস্টলোকেশন () ব্যবহার করুন। হিসাবে এটি আমদানিimport com.google.android.gms.location.LocationResult;

2

হ্যাঁ, এটি হ্রাস করা হয়েছে। FusedLocationProviderClientএর চেয়ে সহজ FusedLocationProviderApi, কারণ FusedLocationProviderApiসাধারণত GoogleApiClientখুব প্রয়োজন হয়, যা আমাদের Google Play Serviceম্যানুয়ালি সংযোগ করতে হবে । আপনি যদি পূর্বে ব্যবহার করেন তবে GoogleApiClientএখন GoogleApiClientআর দরকার নেই ( এখানে আরও ))

শেষ অবস্থান পেতে, এই ফাংশনটি ব্যবহার করতে পারেন:

import com.google.android.gms.location.FusedLocationProviderClient;
import com.google.android.gms.tasks.OnCompleteListener;

public class MainActivity extends AppCompatActivity{
//before public class MainActivity extends AppCompatActivity implements LocationListener,...,...


private static final String TAG = "MainActivity";
public static final int MY_PERMISSIONS_REQUEST_FINE_LOCATION = 101;
private FusedLocationProviderClient mFusedLocationClient;
private Location mGetedLocation;

private double currentLat, currentLng;

private void getLastLocation() {
    if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
            requestPermissions(new String[] {Manifest.permission.ACCESS_FINE_LOCATION}, MY_PERMISSIONS_REQUEST_FINE_LOCATION);
        }
        return;
    }
    mFusedLocationClient.getLastLocation()
            .addOnCompleteListener(this, new OnCompleteListener<Location>() {
                @Override
                public void onComplete(@NonNull Task<Location> task) {
                    if (task.isSuccessful() && task.getResult() != null) {
                        mGetedLocation = task.getResult();
                        currentLat = mGetedLocation.getLatitude();
                        currentLng = mGetedLocation.getLongitude();
                        //updateUI();
                    }else{
                        Log.e(TAG, "no location detected");
                        Log.w(TAG, "getLastLocation:exception", task.getException());
                    }
                }
            });

}

-1

সমস্যাটি আপনার আমদানির বিবৃতি নিয়ে

এটা সরাও

import android.location.LocationListener;

যোগ করুন

import com.google.android.gms.location.LocationListener;

-1

আপনার ক্রিয়াকলাপটি অ্যান্ড্রয়েড ওএস থেকে নয়, গুগল পরিষেবাদি থেকে লোকেশনলিস্টনার বাস্তবায়ন করুন এটি আমার পক্ষে কাজ করেছে।


-1

পরিবর্তে লোকেশন সার্ভিস.ফিউজডলোকেশনএপিআই getFusedLocationProviderClient ব্যবহার করুন।

কোটলিন

activity?.let { activity ->
      val client = LocationServices.getFusedLocationProviderClient(activity)
           client.lastLocation.addOnCompleteListener(activity, OnCompleteListener<Location> {
              // it.result.latitude
              // it.result.longitude
      })
}

java

FusedLocationProviderClient client =
        LocationServices.getFusedLocationProviderClient(this);

// Get the last known location
client.getLastLocation()
        .addOnCompleteListener(this, new OnCompleteListener<Location>() {
            @Override
            public void onComplete(@NonNull Task<Location> task) {
                // ...
            }
        });
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.