I am using this code to get current location latitude and longitude but i am not getting current location latitude and longitude.anyone know the ans update here,

thanks

package com.ram.currentlocation;

import android.app.Activity;    
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.widget.Toast;

public class Location_Gps extends Activity
{

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.main);

      /* Use the LocationManager class to obtain GPS locations */
      LocationManager mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);

      LocationListener mlocListener = new MyLocationListener();
      mlocManager.requestLocationUpdates( LocationManager.GPS_PROVIDER, 0, 0, mlocListener);
    }

    /* Class My Location Listener */
    public class MyLocationListener implements LocationListener
    {

      @Override
      public void onLocationChanged(Location loc)
      {

        loc.getLatitude();
        loc.getLongitude();

        String Text = "My current location is: " +
        "Latitud = " + loc.getLatitude() +
        "Longitud = " + loc.getLongitude();

        Toast.makeText( getApplicationContext(), Text, Toast.LENGTH_SHORT).show();
      }

      @Override
      public void onProviderDisabled(String provider)
      {
        Toast.makeText( getApplicationContext(), "Gps Disabled", Toast.LENGTH_SHORT ).show();
      }

      @Override
      public void onProviderEnabled(String provider)
      {
        Toast.makeText( getApplicationContext(), "Gps Enabled", Toast.LENGTH_SHORT).show();
      }

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

      }
    }
}

i am using manifest code here,

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_CORSE_LOCATION"/>
link|improve this question

First mention what permission are you using and where are you checking this in device or emulator...? – Dinesh Sharma May 23 '11 at 10:34
Do you have ACCESS_FINE_LOCATION in the manifest? – Gabriel Negut May 23 '11 at 10:35
I am using two permission in my manifest <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> <uses-permission android:name="android.permission.ACCESS_CORSE_LOCATION"/> I am getting current location latitude 0.0 and longitude 0.0 – Jeeva May 23 '11 at 10:35
Duplicate of stackoverflow.com/questions/5988681/… – Nik.... May 23 '11 at 10:41
[hear][1] is the best solution for this problem. [1]: stackoverflow.com/questions/8291728/… – Datta Kunde May 15 at 7:00
feedback

4 Answers

up vote 7 down vote accepted

You have a mistake in your manifest file. Correct one is:

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
link|improve this answer
feedback

you have to send location fix to emulator,as emulator is software you need to provide with location fix if you are using eclipse go to window->showview->other select android tab and search for emulator control after u see emulator control window navigate to location controls as u see in below pic

sending loc fix

after you have sent loc fix you can use 
<pre>
Location loc=lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
</pre>
where lm is LocationManager object so 90% of work is done ;) 
cheers!
link|improve this answer
OFC you need MOCKLOCATION,FINELOCATION,COURCELOCATION permissions in manifest – Santosh Kumar Feb 26 at 7:22
feedback

In your android manifest did you set the permissions?

android.permission.ACCESS_FINE_LOCATION

As far as only getting (0,0) co-ords your probably using the emulator. If your using eclipse go to the emulator control and at the bottom you can send the fake co-ords to the device

link|improve this answer
feedback

You are not usin correct permission. correct one is

By the way ur demand can only be fulfilled by theres not need for ACCESS_COARSE_LOCATION

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.