0

私のアプリでは、Google マップ機能を使用しました。そのために、独自のキーストアを使用し、MD5 フィンガープリントを作成しました。後で、Google からその MD5 に基づいて xml を取得しました。

問題:

エミュレーターで動作していますが、実際のデバイスでは何も表示されませんが、グリッドは表示されます。

サンプル - クラス

public class First extends MapActivity {
private MapController mc;
private MapView mapView;

private static double current_lat;
private static double current_long;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mapView = (MapView) findViewById(R.id.mapview);
mc = mapView.getController();
LocationManager mlocManager = (LocationManager)   getSystemService(Context.LOCATION_SERVICE);
mlocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, mNetworkListener);

GeoPoint p = new GeoPoint((int)current_lat*(1000000), (int)current_long*(1000000));            
mc.animateTo(p);  

}
private static LocationListener mNetworkListener = new LocationListener() 
{
public void onLocationChanged(Location location) {
makeUseOfNewLocation(location);
}

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

    }

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

    }

    public void onStatusChanged(String provider, int status, Bundle extras) {}
         public void makeUseOfNewLocation(Location location) {
             current_lat = location.getLatitude();
             current_long = location.getLongitude();
             System.out.println("*** i'm here"+current_lat);

    }

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

Android マニフェスト

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>

<application
  android:icon="@drawable/ic_launcher"
  android:label="@string/app_name" >

   <activity
     android:name=".First"
     android:label="@string/app_name" >
     <intent-filter>
      <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
     <uses-library android:name="com.google.android.maps" />
</application>

主要

 <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:orientation="vertical" >

<com.google.android.maps.MapView
 android:id="@+id/mapview"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:apiKey="0wINx0c2YuEd3mkyPwidZyeoz_HiyN3jrts-Q" />

</LinearLayout>

ログキャット

 08-10 14:27:56.841: W/MapActivity(20815): Recycling dispatcher       android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher@405b  9458
 08-10 14:27:56.851: V/MapActivity(20815): Recycling map object.
 08-10 14:27:56.901: I/MapActivity(20815): Handling network change   notification:CONNECTED
 08-10 14:27:56.901: E/MapActivity(20815): Couldn't get connection factory client

デバイスにマップが表示されない理由を誰でも理解できますか?

4

2 に答える 2

0

mapview xmlコードをこれに置き換えて、再試行してください。

<com.google.android.maps.MapView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true"
    android:apiKey="Your API Key"
/>

また、デバイスがインターネットにアクセスできることを確認してください。

于 2012-08-10T10:29:28.757 に答える
0

実際に私が理解した問題は、署名された API キーを使用しているため、アプリが Android マーケットからダウンロードされた場合にのみ Mapview が表示されることです。

それが理由だと思いますが、日食を実行している間は表示されません。

于 2012-08-13T04:57:59.097 に答える