1

嗨,我刚刚开发了一个应用程序来查找当前位置并导航到当前位置。我在真实设备上运行它,但收到“不幸的是当前位置已停止”的错误。为什么当一切都正确时我会收到此错误...???? 我怎样才能克服它....问候

主要活动代码

package com.example.routetracker;

import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;

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

public class MainActivity extends Activity {
GoogleMap map;
LocationManager lm;

@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


     lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
     map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map))
             .getMap();
     map.setMyLocationEnabled(true);

     LocationListener ll = new LocationListener() {

     @Override
     public void onStatusChanged(String provider, int status,
     Bundle extras) {
     // TODO Auto-generated method stub

     }

     @Override
     public void onProviderEnabled(String provider) {
     // TODO Auto-generated method stub

     }

     @Override
     public void onProviderDisabled(String provider) {
     // TODO Auto-generated method stub

     }

     @Override
     public void onLocationChanged(Location location) {

     Toast.makeText(getApplicationContext(),
     (int) (location.getLatitude() + location.getLongitude()),
     Toast.LENGTH_LONG).show();

     map.addMarker(new MarkerOptions()
     .position(new LatLng(location.getLatitude(), location.getLongitude()))
     .title("my position")
     .icon(BitmapDescriptorFactory
     .defaultMarker(BitmapDescriptorFactory.HUE_AZURE)));

     map.animateCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(
     location.getLatitude(), location.getLongitude()), 15.0f));

     }
     };
     lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, ll);

     }

     }

清单是

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.routetracker"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="12"
    android:targetSdkVersion="17" />

<uses-feature
    android:glEsVersion="0x00020000"
    android:required="true" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission     
 android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<!--
 The following two permissions are not required to use
 Google Maps Android API v2, but are recommended.
-->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<permission
    android:name="com.example.routetracker.MAPS_RECEIVE"
    android:protectionLevel="signature" />

<uses-permission android:name="com.example.routetracker.permission.MAPS_RECEIVE" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.routetracker.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
              <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="AIzaSyDizP29Y9VGJmDlGR-po6p0gzuXVuKEFCo" />
</application>

</manifest>

xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<fragment  
      android:id="@+id/map"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:name="com.google.android.gms.maps.MapFragment"
      />
</LinearLayout>
4

0 回答 0