アプリにマップをロードしたいのですが、Google 開発者ドキュメントのヘルプを解釈できません。
2 に答える
When i was integrating the same in my android app, that time this integration made me sick. Following proper steps from here https://developers.google.com/maps/documentation/android/ helps me a lot. Important thing to remember don't forget to install Google Api's from Android SDK Manager.
私は最近5月に更新し、この手順に従ってください。
step [1]
sdk
あなたのとを 更新して確認してくださいGoogle Play service
step [2]
goto sdk path C:\android-sdk-windows\extras\google
Google Play Service Libray と同様にインポートしますworkspace
step [3]
library
プロジェクトに追加
step [4]
あなたのxmlにLikeを入れてください
<fragment
android:id="@+id/mapview"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/includefooter"
android:layout_below="@+id/relativetop" />
step [5]
のような活動で
public class YourActivi extends FragmentActivity {
....
GoogleMap mapView;
mapView = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.mapview)).getMap();
}
マニフェストのステップ[6]
<permission
android:name="com.tixe.Activity.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="YourPackage.permission.MAPS_RECEIVE" />
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="yourKey" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
Require Permission にもチェックを入れます。