1

我正在使用 Android 和 Google Maps V2 开发一个应用程序,我尝试了很多教程,该应用程序运行良好,没有错误,它显示了我的位置,但是当我尝试在另一个位置打开应用程序时,应用程序没有完全更新位置,我需要知道如何更新位置,我正在使用 ICS 软件在三星 Galaxy S Duos GT-S7562 上进行测试

所以我的问题是:如何更新我当前的位置?地图右上角有一个按钮,我怎样才能在其中放置一个事件以便我可以获取我的当前位置?

这是我正在使用的代码。

ShowMap.java:

package com.maps00;

public class ShowMap extends Activity implements LocationListener{

     GoogleMap googleMap;
     LatLng myposition;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.show_map);
         MapFragment fm=(MapFragment) getFragmentManager().findFragmentById(R.id.map);
    googleMap=fm.getMap();
    googleMap.setMyLocationEnabled(true);
    LocationManager locationManager=(LocationManager) getSystemService(LOCATION_SERVICE);
    Criteria criteria=new Criteria(); // object to retrieve provider
    String provider = locationManager.getBestProvider(criteria, true);
    Location location=locationManager.getLastKnownLocation(provider);
    if(location!=null){
        onLocationChanged(location);
    }
    locationManager.requestLocationUpdates(provider, 20000, 0, this);
    }

    @Override
    public void onLocationChanged(Location location) {
                double latitude = location.getLatitude();
        double longitude = location.getLongitude();
        LatLng latLng = new LatLng(latitude, longitude);
        myposition = new LatLng(latitude, longitude);
        googleMap.addMarker(new MarkerOptions().position(myposition).title("Start"));
        googleMap.moveCamera(CameraUpdateFactory.newLatLng(latLng));
        googleMap.animateCamera(CameraUpdateFactory.zoomTo(17));
        TextView t=(TextView) findViewById(R.id.tv_location);
        t.setText("Latitude:" +  latitude  + ", Longitude:"+ longitude );
    }
}

清单.xml

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

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

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

    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />
    <uses-permission android:name="com.maps00.permission.MAPS_RECEIVE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <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" />
    <uses-permission android:name="android.permission.com.google.android.providers.gsf.permission.READ_GSERVICES" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

    <uses-feature
        android:name="android.hardware.location"
        android:required="false" />
    <uses-feature
        android:name="android.hardware.location.network"
        android:required="false" />
    <uses-feature android:name="android.hardware.location.gps" />
    <uses-feature
        android:name="android.hardware.wifi"
        android:required="false" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.maps00.ShowMap"
            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="MY KEY" />


    </application>
</manifest> 

布局.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".ShowMap" >
<fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.MapFragment" />
     <TextView
        android:id="@+id/tv_location"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/map"
        android:layout_alignTop="@+id/map"
        android:layout_marginLeft="83dp"
        android:text="TextView" />
</RelativeLayout>
4

1 回答 1

3

编辑:

据说GoogleMap.setOnMyLocationChangeListener从 3.1.36 版本的库开始已被弃用。

原来的:

使用GoogleMap.setOnMyLocationChangeListener而不是直接交互LocationManager

内存泄漏和电池耗尽警告:您应该在使用时在某处取消注册requestLocationUpdatesActivity如果您的应用在关闭后仍要求更新,您的用户将不会喜欢您的应用。

于 2013-05-02T09:38:41.173 回答