2

我在 Android 模拟器 2.3.1 和 2.3.3 中捕获 GPS 坐标时遇到问题,我测试过并且它工作其他版本不明白,在这两个版本的 Android 中不读取坐标,我的表格我这样做是为了激活 GPS:

LocationManager lmgr = (LocationManager) getSystemService(Context.LOCATION_SERVICE);

if (!lmgr.isProviderEnabled(android.location.LocationManager.GPS_PROVIDER)) {
        Intent myIntent = new Intent(Settings.ACTION_SECURITY_SETTINGS);
    startActivity(myIntent);
}

lmgr.requestLocationUpdates(LocationManager.GPS_PROVIDER, 3000, 10,this);

AndroidManifest.xml

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<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" />

通过 logcat 模拟器发送 GPS 坐标给出以下系统并重新启动模拟器:

01-16 19:09:09.403: E/InputQueue-JNI(320): channel '406f3310 irbu.lod/irbu.lod.mapa.ViewMapaActivity (client)' ~ Publisher closed input channel or an error occurred.  events=0x8
01-16 19:09:09.403: E/InputQueue-JNI(320): channel '40819c60 irbu.lod/irbu.lod.IRBUActivity (client)' ~ Publisher closed input channel or an error occurred.  events=0x8
01-16 19:09:09.444: E/InputQueue-JNI(115): channel '406479d8 StatusBar (client)' ~ Publisher closed input channel or an error occurred.  events=0x8
01-16 19:09:09.444: E/InputQueue-JNI(115): channel '4063cca0 TrackingView (client)' ~ Publisher closed input channel or an error occurred.  events=0x8
01-16 19:09:09.444: E/InputQueue-JNI(115): channel '40642858 StatusBarExpanded (client)' ~ Publisher closed input channel or an error occurred.  events=0x8
01-16 19:09:09.524: E/InputQueue-JNI(137): channel '407d5158 com.android.launcher/com.android.launcher2.Launcher (client)' ~ Publisher closed input channel or an error occurred.  events=0x8
01-16 19:10:36.427: E/Zygote(363): setreuid() failed. errno: 17

无需重启即可读取 GPS 坐标?

4

2 回答 2

1

这是此处报告的错误。

于 2012-03-22T13:30:09.940 回答
0

尝试使用 SDK 2.1。我认为这是 android 2.3.1 中的错误

于 2012-02-25T06:44:11.427 回答