私は私のデバイスでGPSを有効にしますが、私はloactionを取得していない午前:AndroidのGPSの場所
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
if(lm.isProviderEnabled(LocationManager.GPS_PROVIDER))
{
Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if(location!=null)
{
showCurrentAddress(location);
}
}
しかし、ここで私はgettinの場所がnullであると私は私のコードに次の権限を追加しました:
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
お願いします。
すると、この[リンク]を試してみてください[ 1] [1]:http://stackoverflow.com/questions/3145089/what-is-the-simplest-and-most-robust-way-to-get-the-users-current-位置情報/ 3145655#3145655 GPについてGPの場所を取得する – Dinesh
お試しください[link] [1] [1]:http://stackoverflow.com/questions/3145089/what-is-the-simplest-and-most-robust-way-to-get-the-users-current-location- in-a/3145655#3145655 – Dinesh