Androidサポートライブラリを使用して、新しいGoogleマップAndroid API v2をアプリケーションに組み込みます。多くの繰り返しを経て、どこかで仕事をすることになりましたが、今はあきらめて、ここで尋ねるべきだと思いました。
APIコンソールに行き、プロジェクトを作成し、Android向けGoogle Maps API v2を有効にし、必要に応じてデバッグKEYを作成し、マニフェストに貼り付けました。認証の問題などはありません。確かに私はこれを正しくやった。
プロジェクトのlibs
フォルダーに_Android-support-v4.jar
_を配置しました(プロジェクトを右クリックして[Android]> [サポートライブラリを追加...]を使用)。 EclipseでFile-> Import-> Android-> Existing Android Code Into Workspaceを実行し、Android-sdk/google/google_play_services/libproject/google-play-の最新(rev 3)をインポートしましたservices_lib。次に、依存関係ライブラリとしてプロジェクトに追加しました(プロジェクトの右クリック->プロパティ-> Android->下部のライブラリ依存関係として追加)。
私のマニフェストで私は持っています:
_<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android" ...>
<permission
Android:name="myapp.permission.MAPS_RECEIVE"
Android:protectionLevel="signature"/>
<All the uses-permission required like INTERNET, ACCESS_NETWORK_STATE, WRITE_EXTERNAL_STORAGE, FINE AND COARSE LOCATION, etc>
<uses-permission Android:name="myapp.permission.MAPS_RECEIVE"/>
<uses-feature Android:glEsVersion="0x00020000" Android:required="true"/>
<application ...>
...
<uses-library Android:name="com.google.Android.maps" />
<meta-data Android:name="com.google.Android.maps.v2.API_KEY" Android:value="AI..."/>
</application>
_
私のmainview.xmlには:
_<fragment
xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:id="@+id/map"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
class="com.google.Android.gms.maps.SupportMapFragment" />
_
今MainView.Javaで:
_import Android.support.v4.app.Fragment;
import Android.support.v4.app.FragmentActivity;
import Android.support.v4.app.FragmentManager;
import Android.support.v4.app.FragmentTransaction;
import com.google.Android.gms.maps.GoogleMap;
import com.google.Android.gms.maps.SupportMapFragment;
public class MainView extends FragmentActivity ... {
private GoogleMap mMap;
@Override
protected void onResume() {
...
Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.map);
SupportMapFragment mapFragment = (SupportMapFragment)fragment;
mMap = mapFragment.getMap();
//PROBLEM: mMap is null here even though mapFragment is not
}
}
_
次に、おそらくフラグメントを初期化する必要があると思ったので、コンテンツビューを設定した後、onCreate
に追加しました。
_//Fragments
FragmentManager manager = getSupportFragmentManager();
FragmentTransaction transaction = manager.beginTransaction();
transaction.add(R.id.map, SupportMapFragment.newInstance());
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
transaction.commit();
_
次に、私は言った、多分それはSupportMapFragment
ではないかもしれませんが、実際には実際のフラグメントを参照する必要があり、私のonResume
では次のようにしました:
_Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.map);
SupportMapFragment mapFragment = (SupportMapFragment)fragment;
//Fragments
FragmentManager manager = getSupportFragmentManager();
FragmentTransaction transaction = manager.beginTransaction();
transaction.add(R.id.map, mapFragment);
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
transaction.commit();
mMap = mapFragment.getMap();
_
この後、mMap
は再びnullになります。
次に、MapsInitializer
クラスがあることを確認したので、最初にそれを呼び出す必要があると思いました。
だから私は上のコードでフラグメントを取得する前にコードを追加しました:
_try {
MapsInitializer.initialize(this);
} catch (GooglePlayServicesNotAvailableException e) {
e.printStackTrace();
}
_
このLogcatで警告が報告されました(313行目はMapsInitializer.initialize(this)
です):
_com.google.Android.gms.common.GooglePlayServicesNotAvailableException
at com.google.Android.gms.internal.n.c(Unknown Source)
at com.google.Android.gms.internal.n.a(Unknown Source)
at com.google.Android.gms.maps.MapsInitializer.initialize(Unknown Source)
at myapp.activities.MainView.inflateSelectedViewAndSetData(MainView.Java:313)
at myapp.activities.MainView.onClick(MainView.Java:642)
at Android.view.View.performClick(View.Java:3153)
at Android.view.View$PerformClick.run(View.Java:12148)
at Android.os.Handler.handleCallback(Handler.Java:587)
at Android.os.Handler.dispatchMessage(Handler.Java:92)
at Android.os.Looper.loop(Looper.Java:152)
at Android.app.ActivityThread.main(ActivityThread.Java:4615)
at Java.lang.reflect.Method.invokeNative(Native Method)
at Java.lang.reflect.Method.invoke(Method.Java:491)
at com.Android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.Java:841)
at com.Android.internal.os.ZygoteInit.main(ZygoteInit.Java:599)
at dalvik.system.NativeStart.main(Native Method)
_
私の試みを通じて、Logcatは次の警告を報告します。
_Google Play services out of date. Requires 2010100 but found 1013
_
これが原因の可能性がありますが、解決策は見つかりませんでした。
この時点で私はアイデアがなくなっています。私はいくつかのスレッド here 、 here 、 here を読みましたが、どの提案も問題を解決しませんでした。後者については、プロジェクトの依存関係を含めず、jarファイルのみを含めることをお勧めします。まあ、それは、_google-play-services.jar
_フォルダーから_google-play-services_lib/libs
_を使用するか、そのプロジェクトから自分のjarをエクスポートするかのどちらでも機能しませんでした。
ちなみに私は実際のデバイス(2.3.5と3.2を搭載したタブレット)ではなく、エミュレーターで実行しています。
心から感謝します。 :)
UPDATE:
解決策は、以下の量子ビットです。
ライブラリの依存関係をエクスポートする限り、それを処理する必要がない(リポジトリを処理するときに苦痛です)ためのきちんとした方法は、 FatJar を使用して_google_play_services_lib
_プロジェクトをエクスポートすることです(これは私がDID更新時にローカルコピーを作成しないでください。更新すると再インポートしたくないため)、出力ファットjarファイルを別のjarファイルとしてプロジェクトに含めます。注:ファットjarにどのjarファイルを含めるか、_annotations.jar
_ファイルは既に組み込まれており、重複のエラーを引き起こしていたため、除外する必要がありました。今、私がしなければならないことは、_google_play_services_rev_3.jar
_を私のプロジェクトのlibs
フォルダーに移動しました。
Playストアから最新のGoogle Play services
をダウンロードしてインストールします。どういうわけか、検索しても見つかりませんでした。 /extras/google/google_play_services/samples/maps
フォルダー内のSDKからサンプルアプリを実行すると、アップグレードをインストールするように求められ、そのためにPlayストアに移動しました。
そのリンクの下部に記載されているように; http://developer.Android.com/google/play-services/setup.html
そして、これを適切に処理するためのサンプルコードがあります。
int checkGooglePlayServices = GooglePlayServicesUtil.isGooglePlayServicesAvailable(mContext);
if (checkGooglePlayServices != ConnectionResult.SUCCESS) {
// google play services is missing!!!!
/* Returns status code indicating whether there was an error.
Can be one of following in ConnectionResult: SUCCESS, SERVICE_MISSING, SERVICE_VERSION_UPDATE_REQUIRED, SERVICE_DISABLED, SERVICE_INVALID.
*/
GooglePlayServicesUtil.getErrorDialog(checkGooglePlayServices, mActivity, 1122).show();
}
私のプロジェクトでも同じ問題がありました。解決策は非常に簡単で、((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
がnull
を返す可能性を処理するだけです。 null
を処理する場合、buid-in SupportMapFragment
はGoogle Play services out of date.
エラーを処理し、Google Playサービスを更新するためのマップローカライズされたメッセージとボタンの挿入を示します。 qubzがサンプルプロジェクトで教えています。
サンプルのコード:
@Override
protected void onResume() {
super.onResume();
setUpMapIfNeeded();
}
/**
* Sets up the map if it is possible to do so (i.e., the Google Play services APK is correctly
* installed) and the map has not already been instantiated.. This will ensure that we only ever
* call {@link #setUpMap()} once when {@link #mMap} is not null.
* <p>
* If it isn't installed {@link SupportMapFragment} (and
* {@link com.google.Android.gms.maps.MapView MapView}) will show a Prompt for the user to
* install/update the Google Play services APK on their device.
* <p>
* A user can return to this FragmentActivity after following the Prompt and correctly
* installing/updating/enabling the Google Play services. Since the FragmentActivity may not have been
* completely destroyed during this process (it is likely that it would only be stopped or
* paused), {@link #onCreate(Bundle)} may not be called again so we should call this method in
* {@link #onResume()} to guarantee that it will be called.
*/
private void setUpMapIfNeeded() {
// Do a null check to confirm that we have not already instantiated the map.
if (mMap == null) {
// Try to obtain the map from the SupportMapFragment.
mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
.getMap();
// Check if we were successful in obtaining the map.
if (mMap != null) {
setUpMap();
}
}
}
/**
* This is where we can add markers or lines, add listeners or move the camera. In this case, we
* just add a marker near Africa.
* <p>
* This should only be called once and when we are sure that {@link #mMap} is not null.
*/
private void setUpMap() {
mMap.addMarker(new MarkerOptions().position(new LatLng(0, 0)).title("Marker"));
}
そして結果:
悲しいドキュメントとして
GoogleMapは、基になるマップシステムが読み込まれ、フラグメント内の基になるビューが存在する場合にのみ、getMap()を使用して取得できます。このクラスは、マップシステムとビューを自動的に初期化します。ただし、Google Play開発者サービスAPKの可用性に依存するため、いつ準備ができるかは保証できません。 GoogleMapが利用できない場合、getMap()はnullを返します。 SupportMapFragment