問題 は解決されました 解決策の簡単な要約: api v1 のクラスではないことを確認してください。私が働いていた今、エミュレーターはアプリケーションをテストするのに役に立たなかった. というわけで実機でテスト。最後に、アプリケーションが正しく実行されてもマップが表示されない場合は、キーに問題があります。ここで気付いたのは、キーが間違っている、アプリケーションが実行されている、しかしマップが表示されていないことを catlog が示していないことです。
アクティビティにマップを表示するだけで失敗した単一の単純なGoogleマップAndroidアプリケーションを2日間作成しようとしています。Google の 2 ページ目までのすべてのチュートリアルを試しました。何も機能しません。少しうまくいくのは、本でフォローしているアプリケーションだけですが、グリッドが表示され、MAPは表示されません。通常、人々はキーが間違っていると答えますが、そうではありません。私の鍵は正しいです。鍵の生成に正確に取り組みました。Google Maps Android API v2 キーを使用しています。
ここに私の activity_main.xml があります
<?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="0AeGR0UwGH4pYmhcwaA9JF5mMEtrmwFe8RobTHA"
android:clickable="true"
android:enabled="true" />
</LinearLayout>
ここに私の MainActivity.java があります
package com.example.lbs;
import android.os.Bundle;
import android.view.Menu;
import com.google.android.maps.MapActivity;
public class MainActivity extends MapActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return false;
}
}
ここに私の AndroidManifest.xml があります
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.lbs"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="android.permission.INTERNET" />
<permission
android:name="com.example.lbs.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="com.example.lbs.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<uses-library android:name="com.google.android.maps" />
<activity
android:name="com.example.lbs.MainActivity"
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>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyB1RpoULFVTRkXREZX0ZAwxcz4_75Y0HYc" />
</manifest>
カタログで、アプリケーションが実行されているときにこれを取得しています
IOException processing: 26
java.io.IOException: Server returned: 3
at android_maps_conflict_avoidance.com.google.googlenav.map.BaseTileRequest.readResponseData(BaseTileRequest.java:115)
更新 1: 上記のすべての後、いくつかの場所で読んだように、コードは API キー v1 用のみである可能性があります。だから私はhttps://blog-emildesign.rhcloud.com/?p=435の最初から完全にチュートリアルに従い、 これで終わった
更新 2: 今、実際の Android デバイスで動作するようにしようとしました。アンドロイド2.3です。だから、もう少し仕事をする。私は私の活動で終わる
CatLog で確認できるのは
そのため、地図はまだ表示されていません...助けてください...
更新 3: 問題は API キーにありました。間違ったキーについて logcat に何も表示されませんでした。アプリケーションは実行されますが、マップは表示されません。ということで鍵を作り直しました。さあ、いくぞ