マイマップが表示されません。Log Cat にマップ グリッドもエラー メッセージも表示されません。「Google APIによる認証に失敗しました」などのタイプはありません(これにより、APIキーが正しいと信じられます)。どのタイプのマップも取得できません。
構成とマニフェスト
- Androidエミュレーターを使用しています(これをapkとしてエクスポートしていないため、APIキーを生成するためにデバッグキーを取得しました)
- jdk1.7からSHA1を適切に取得し、キーストアをデバッグしました
- API 開発者コンソールで GoogleMaps V2 と GooglMapsAndroidV2 の両方を有効にしました
- 以下のマニフェストに示すように、必要および推奨される権限、メタデータ、および機能 (openGL 2 など) をすべて有効にしました。
- Android PrivateLibraries を有効にしました Google-play-services.jar b. Android-support-v4.jar
- Android の依存関係があります。Google-play-services_lib.jar
- この投稿の下部にある project.properties と proguard ファイルをコピーしました
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.proximitystuff"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="17" />
<permission
android:name="com.example.mapdemo.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>
<uses-permission android:name="com.example.proximitystuff.permission.MAPS_RECEIVE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
<!-- The following two permissions are not required to use
Google Maps Android API v2, but are recommended. -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>
<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.proximitystuff.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>
<activity
android:name="com.example.proximitystuff.MyMapActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAPACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<service
android:name="com.example.proximitystuff.ProxyBackgroundCheck"
android:enabled="true"
android:permission="com.example.ADAMS_PROX_PERMISSION" >
</service>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBnQNgn166qfatch_xcFwL8K0AfVHBYcGA"/>
</application>
</manifest>
Java コードと XML レイアウト: 私のメイン アクティビティでは、ボタンを使用して、スクリーンショットに示されているマップ アクティビティに移動します。このマップ アクティビティのコードは、最も基本的な機能に限定されており、それでも機能しません。私が持っていた理論の 1 つは、このクラスは「FragmentActivity」を継承していないため、xml フラグメントを操作できないというものでした (この場合、ログに少なくとも何らかのエラーが記録されると思います)。
package com.example.proximitystuff;
import android.app.Activity;
import android.os.Bundle;
public class MyMapActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my_map);
}
}
My XML layout is using the most basic layout possible.
<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.MapFragment"/>
プロジェクトのプロパティ
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system edit
# "ant.properties", and override values to adapt the script to your
# project structure.
#
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
# Project target.
target=android-17
android.library.reference.1=../google-play-services_lib
プロガード(これが間違っている場合に備えて):
# To enable ProGuard in your project, edit project.properties
# to define the proguard.config property as described in that file.
#
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in ${sdk.dir}/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the ProGuard
# include property in project.properties.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
-keep class * extends java.util.ListResourceBundle {
protected Object[][] getContents();
}