Android 2.3.3 用の基本的な Google マップ アプリケーションをセットアップしようとしています。名前を付けるだけで、Eclipse、NetBeans、IntelliJ IDEA で開発してみました。何度も失敗した後、私は基本に戻りました。API v1 について教えてください。
現在、マップは空白で表示されます (エミュレーターと実際のデバイス)。これは私のコードです(ちなみに、可能なすべての許可タグを試しました):
デフォルトのデバッグ キーを使用してアプリケーションに署名していますが、リリースで署名しても空白のマップが表示されます。
私が欲しいのは、実際の地図を見ることだけです。(ちなみに、ここのテキストの形式が正しいかどうかわからないので、簡単に言えば、コード 1-1 を here mapview v1 sampleからコピーしました)
マニフェスト
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.hellogooglemaps"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8"/>
<application android:label="@string/app_name">
<uses-library android:name="com.google.android.maps"/>
<activity android:name="MyActivity"
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>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
アクティビティのレイアウト
<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="BLA_BLA_BLA_GOT_A_KEY"
/>
アクティビティ
package com.example.hellogooglemaps;
import android.os.Bundle;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;
public class MyActivity extends MapActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
MapView mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
}
@Override
protected boolean isRouteDisplayed() {
return false;
}
}