3

これは私のマップ アクティビティ クラスです。このアプリケーションでは、mylocation は Google nexus フォンでは完全に機能しますが、Galaxy タブ P3100 では機能しません。アプリケーションを実行する前にWi-Fi 接続を確認しました。有効にした 1. GPS 衛星を使用する 2. 位置情報と Google 3.ワイヤレス ネットワークを使用する

public class MyMap extends MapActivity {

private MapController mapController;
private MyLocationOverlay myLocation;

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

    MapView mapView = (MapView) findViewById(R.id.map_view);
    mapController = mapView.getController();



    mapController.setZoom(6);
    mapView.setBuiltInZoomControls(true);

    myLocation = new MyLocationOverlay(this, mapView);
    mapView.getOverlays().add(myLocation);

    myLocation.enableMyLocation();

    myLocation.runOnFirstFix(new Runnable() {
        public void run() {
            mapController.animateTo(myLocation.getMyLocation());
        }
    });
}

@Override
protected void onResume() {
    super.onResume();
    myLocation.enableMyLocation();
}

@Override
protected void onPause() {
    super.onPause();
    myLocation.disableMyLocation();
}

@Override
protected boolean isRouteDisplayed() {
    // TODO Auto-generated method stub
    return false;
}
 }

戻る

 Uncaught exception thrown by finalizer
 java.lang.IllegalStateException: Binder has been finalized!
 at android.os.BinderProxy.transact(Native Method)
 at android.database.BulkCursorProxy.close(BulkCursorNative.java:288)
 at android.database.BulkCursorToCursorAdaptor.close(BulkCursorToCursorAdaptor.java:133)
at android.database.CursorWrapper.close(CursorWrapper.java:49)
at android.content.ContentResolver$CursorWrapperInner.close(ContentResolver.java:1591)
    at android.content.ContentResolver$CursorWrapperInner.finalize(ContentResolver.java:1604)
at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:182)
at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:168)
at java.lang.Thread.run(Thread.java:856)

解決策を教えてください..

ありがとう。

4

0 に答える 0