1

エミュレーターとデバイスに mapview を読み込もうとしています

これを 2 日間試してみましたが、マップが表示されずにグリッド線が表示されたり、致命的なエラーが発生したり、エミュレーターとデバイスの両方でアプリが起動しないことがあります。

インターネット上に存在するすべてのコードを試しましたが、何も機能しません。あなたは私の最後の希望です。

サイトに記載されている手順に従いました

ここからAPIキーを取得しました

私はできる限りのことをしました。このプロセスが正しくない場合は、どうすればよいか教えてください。私はGingerbread 2.3.3(API 10)のためにそれをやっています..

回答お待ちしております ありがとうございます。

私のログ猫: 07-06 02:12:45.692: E/AndroidRuntime(3020): java.lang.RuntimeException: アクティビティを開始できません ComponentInfo{com.example.maps/com.example.maps.MainActivity}: android.view .InflateException: バイナリ XML ファイルの行 #2: クラス フラグメントの展開中にエラーが発生しました

私の AndroidMenifest:

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

    <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"/>

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

<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="AEdPqrEAAAAI5QAuDgiTRjyU-y_MK-ZRQqBaN_VoLb4gADuCwA"/>
</application>

私の Main.xml

 <fragment
 xmlns:android="http://schemas.android.com/apk/res/android"
   android:id="@+id/map"
   android:name="com.google.android.gms.maps.MapFragment"
   android:layout_width="match_parent"
   android:layout_height="match_parent" 
    tools:context=".MainActivity" 
xmlns:tools="http://schemas.android.com/tools" />

私の MainActivity.Java

package com.example.maps;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;
import android.os.Bundle;

public class MainActivity extends MapActivity {

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

    MapView view = (MapView) findViewById(R.id.map);
    view.setBuiltInZoomControls(true);  
}

@Override
protected boolean isRouteDisplayed() {
    // TODO Auto-generated method stub
    return false;
}
}
4

2 に答える 2

0

フラグメントを使用していますが、それを MapView にロードします。これが、フラグメントを MapView オブジェクトにインフレートすることができないため、RuntimeException を取得する理由です。MapView は、Android マップ API バージョン 1 でサポートされていた古いクラスであり、現在は非推奨です。

引用した開発サイトから:

注: Google Maps Android API v2 では、キーを管理する新しいシステムが使用されています。一般に MapView として知られる Google マップ Android v1 アプリケーションの既存のキーは、v2 API では機能しません。

アクティビティは実際に MapFragment を拡張する必要があり、FragmentManager または SupportFragmentManager を使用してマップを拡張する必要があります。

public class MyActivity extends FragmentActivity {
   private GoogleMap mMapView;
   private SupportMapFragment mFragment;


   @Override
   protected void onCreate() {
     super.onCreate();
     FragmentManager fragmentManager = getSupportFragmentManager();
     mFragment = ((SupportMapFragment) fragmentManager.findFragmentById(R.id.map));
     mMapView = mFragment.getMap();
     mMapView.getUiSettings().setZoomControlsEnabled(true);
     // configure other settings of map view
   }
}

また、レイアウト xml 内のクラスの名前も、次のように SupportMapFragment にする必要があります。

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/map"
  android:name="com.google.android.gms.maps.SupportMapFragment"
  android:layout_width="match_parent"
  android:layout_height="match_parent" 
  tools:context=".MainActivity" 
  xmlns:tools="http://schemas.android.com/tools" />

ここで詳細情報を見つけることができます: https://developers.google.com/maps/documentation/android/intro

于 2013-07-06T15:28:55.217 に答える