1

私のアプリは既に Google Maps Android API v2 を使用しており、Galaxy Mini (Android 2.3.6) で動作しています。プラットフォーム 4.0.3、API レベル 15、および Google API を使用してエミュレーターでテストしようとすると、次のエラーが発生します。

01-23 14:26:31.581: ERROR/AndroidRuntime(688): FATAL EXCEPTION: main
    java.lang.RuntimeException: Unable to start activity ComponentInfo{br.com.remotepark/br.com.remotepark.activities.MainActivity}: android.view.InflateException: Binary XML file line #11: Error inflating class fragment
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1956)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1981)
    at android.app.ActivityThread.access$600(ActivityThread.java:123)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:137)
    at android.app.ActivityThread.main(ActivityThread.java:4424)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:511)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
    at dalvik.system.NativeStart.main(Native Method)
    Caused by: android.view.InflateException: Binary XML file line #11: Error inflating class fragment
    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:697)
    at android.view.LayoutInflater.rInflate(LayoutInflater.java:739)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:489)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:396)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:352)
    at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:251)
    at com.actionbarsherlock.internal.ActionBarSherlockNative.setContentView(ActionBarSherlockNative.java:119)
    at com.actionbarsherlock.app.SherlockFragmentActivity.setContentView(SherlockFragmentActivity.java:262)
    at br.com.remotepark.activities.MainActivity.onCreate(MainActivity.java:51)
    at android.app.Activity.performCreate(Activity.java:4465)
    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920)
    ... 11 more
    Caused by: java.lang.NullPointerException
    at br.com.remotepark.fragments.MapFragment.initLocation(MapFragment.java:86)
    at br.com.remotepark.fragments.MapFragment.onCreateView(MapFragment.java:62)
    at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:845)
    at android.support.v4.app.FragmentManagerImpl.moveToState(FragmentManager.java:1058)
    at android.support.v4.app.FragmentManagerImpl.addFragment(FragmentManager.java:1156)
    at android.support.v4.app.FragmentActivity.onCreateView(FragmentActivity.java:270)
    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:669)
    ... 22 more

例外をスローする行は次のとおりです。

mMap.setInfoWindowAdapter(new MapInfoWindowAdapter(getLayoutInflater(savedInstanceState)));

MapInfoWindowAdapter コンストラクターは次のようになります。

MapInfoWindowAdapter(LayoutInflater layoutInflater) {
        mLayoutInflater = layoutInflater;

        mWindow = mLayoutInflater.inflate(R.layout.map_info_window, null);
        mContents = mLayoutInflater.inflate(R.layout.map_info_window, null);
    }

map_info_window.xml は次のとおりです。

<ImageView
    android:layout_width="40dip"
    android:layout_height="40dip"
    android:src="@drawable/ic_remote_park"
    android:id="@+id/remotepark_logo"
    android:layout_marginLeft="0dip"
    android:layout_marginRight="8dip"
    android:layout_marginTop="16dip"></ImageView>

<LinearLayout
    android:id="@+id/balloon_inner_layout"
    android:layout_width="0dip"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_weight="1"
    android:paddingTop="5dip">
    <LinearLayout
        android:id="@+id/layout1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:paddingTop="0dip">
        <TextView
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:textColor="#FFF"
            android:id="@+id/parking_name_info_window"
            android:textSize="7pt"
            android:singleLine="true"
            android:textStyle="bold"
            android:ellipsize="end"/>
    </LinearLayout>
    <RelativeLayout
        android:id="@+id/RelativeLayout2"
        android:orientation="horizontal"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:layout_marginTop="2dip">
        <RelativeLayout
            android:id="@+id/frameLayout1"
            android:orientation="horizontal"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content">
            <TextView
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:textColor="#FFF"
                android:id="@+id/availability_label_info_window"
                android:text="@string/places_str"
                android:textStyle="bold"/>
            <TextView
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:textColor="#FFF"
                android:id="@+id/availability_info_window"
                android:layout_toRightOf="@+id/availability_label_info_window"
                android:layout_marginLeft="5dip" />
        </RelativeLayout>
        <RelativeLayout
            android:id="@+id/RelativeLayout3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:layout_alignParentRight="true">

            <TextView
                android:id="@+id/price_label_info_window"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#FFF"
                android:textStyle="bold"/>

            <TextView
                android:id="@+id/price_symbol_info_window"
                android:layout_toRightOf="@+id/price_label_info_window"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/price_symbol_str"
                android:textColor="#FFF"
                android:layout_marginLeft="5dip"/>

            <TextView
                android:id="@+id/price_info_window"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#FFF"
                android:layout_toRightOf="@+id/price_symbol_info_window"
                android:layout_marginLeft="2dip"/>
        </RelativeLayout>
    </RelativeLayout>
    <RelativeLayout
        android:id="@+id/RelativeLayout4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_gravity="right"
        android:layout_marginBottom="5dip">

    </RelativeLayout>
</LinearLayout>
<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/btn_more_info_disabled"
    android:id="@+id/more_info_button"
    android:layout_marginLeft="10dip"
    android:layout_marginRight="8dip"
    android:layout_marginTop="16dip"></ImageView></LinearLayout>

なぜ機能しないのか分かりますか?

4

1 に答える 1

0

Google によると、Google Play サービスAPI には「物理的な開発デバイス」が必要なため、エミュレータでは公式にサポートされていません。そのため、エミュレーターで実行している場合、必要なサービスが不足していることはほぼ確実です。人々はエミュレーターで動作するようになったと報告していますが、私は自分で試したことはありません. エミュレーターへの Google Play のインストールを検討したい場合は、この投稿で回答を確認できます。

xml からMapFragmentまたはを膨張させようとすると、エラーが発生します。SupportMapFragment通常は、 を呼び出してデバイスに Google Play サービスがあるかどうかを確認し、先に進む前isGooglePlayServicesAvailable()に戻ることを確認することをお勧めします。ConnectionResult.SUCCESSこれにより、単にクラッシュするのではなく、エラー ダイアログを表示できます。Google はいくつかの他のコードに対してもエラー ダイアログを提供していますgetErrorDialog()

int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
switch (resultCode) {
   case ConnectionResult.SUCCESS: // proceed
      break;
    case ConnectionResult.SERVICE_MISSING:
    case ConnectionResult.SERVICE_VERSION_UPDATE_REQUIRED:
    case ConnectionResult.SERVICE_DISABLED:
          Dialog dialog = GooglePlayServicesUtil.getErrorDialog(resultCode, this, 1);
          dialog.show();
 }

を呼び出す前にこれを行ってくださいsetContentView

于 2013-01-23T15:16:54.130 に答える