0

Google API を使用するアプリを作成しています。そのアプリを携帯電話にインストールするかどうかを知りたいのですが、デバイスに事前にインストールされた Google マップ アプリがマップを使用できるようにする必要がありますか、それともインターネットを使用して Google またはその他の方法からマップを取得しますか? ?

これは私のmain.javaです:

パッケージ com.map.testing;

android.os.Bundle をインポートします。

com.google.android.maps.GeoPoint をインポートします。com.google.android.maps.MapActivity をインポートします。com.google.android.maps.MapController をインポートします。com.google.android.maps.MapView をインポートします。

public class main extends MapActivity { /** アクティビティが最初に作成されるときに呼び出されます。*/ MapController mControl; GeoPoint GeoP; MapView mapV; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); mapV = (MapView) findViewById(R.id.mapView); mapV.displayZoomControls(真); mapV.setBuiltInZoomControls(真);

double lat =  23.1;
double longi = 113.3;

GeoP = new GeoPoint((int)(lat*1E6), (int)(longi*1E6));

mControl = mapV.getController();
mControl.animateTo(GeoP);
mControl.setZoom(12);

}

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

}


これは私のmain.xmlです:

<com.google.android.maps.MapView
             android:id="@+id/mapView"
             android:layout_width="fill_parent"
             android:layout_height="fill_parent"
             android:enabled="true"
             android:clickable="true"
             android:apiKey="00_sJY0o9guZejQwsJOr8PPDHtMpnEB6LWFspjA"
             />
</LinearLayout>

私のマニフェスト:

<uses-sdk android:minSdkVersion="8" />

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

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <uses-library android:name="com.google.android.maps" />

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

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

4

1 に答える 1

0

ただし、APIが電話にないIDを処理できます

Android:required="false" で

Android デバイスが Google マップ API をサポートしているかどうかを検出する方法

于 2012-06-01T07:32:26.527 に答える