0

を使用してグーグルマップを表示するための非常にシンプルなAndroidアプリを作成しgoogle map api v2ました。しかし、私がアプリを実行すると、それは常にすぐに終了します。

誰かが私が間違いを理解するのを手伝ってくれるでしょうか?そして、をインポートしgoogle-play-services.jarandroid-support-v4.jar「サポートライブラリの追加」を追加しました

主な3つのファイルは次のとおりです。

1. MainActivity

package edu.lore;

import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;

import android.os.Bundle;

public class MainActivity extends android.support.v4.app.FragmentActivity {

    private GoogleMap mMap;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        setUpMapIfNeeded();
    }

    @Override
    protected void onResume() {
        super.onResume();
        setUpMapIfNeeded();
    }

    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();
            }
        }
    }

    private void setUpMap() {
        mMap.addMarker(new MarkerOptions().position(new LatLng(0, 0)).title("Marker"));
    }
}

2.activity_main.xml

<?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"
  class="com.google.android.gms.maps.MapFragment"/>

3.AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="edu.lore"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="16" />

<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" />    
<permission
    android:name="edu.lore.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />
<uses-permission android:name="edu.lore.permission.MAPS_RECEIVE" />

<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" >
    <activity
        android:name=".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>
    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="AIzaSyDFH436KisLnq4qY-55fVVOTePBIvMZOAo" />
</application>

4

3 に答える 3

0

MapFragmentapi レベル 12 以上でのみサポートされているため、SupportMapFragment以下のように代わりにを使用する必要があります。

<fragment
         android:id="@+id/map"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         class="com.google.android.gms.maps.SupportMapFragment"/>

Google Maps Android API v2また、アプリケーションを登録した Google コンソールでサービスが有効になっていることも確認してください。

ここに画像の説明を入力

于 2013-01-22T08:33:25.850 に答える
0

LogCat の出力を投稿していただけますか?

フラグメントは、レイアウト ファイルのルート要素として許可されていないと思います。ルート要素は、ViewGroup、View、またはマージ要素である必要があります。http://developer.android.com/guide/topics/resources/layout-resource.htmlを参照してください。

于 2013-01-22T08:07:07.220 に答える
-1

12未満のSupportMapFragment場合に使用する必要がありますMinSdkVersion

<fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    class="com.google.android.gms.maps.SupportMapFragment"/>
于 2013-01-22T08:27:09.160 に答える