0

ここでは非常に簡単な質問ですが、次のようなランタイムエラーが発生しています。

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.maptest/com.example.maptest.MainActivity}: android.view.InflateException: Binary XML file line #2: Error inflating class fragment

私は以前にこの問題を抱えていました。私の直感は、それがおそらくライブラリと関係があるということですが、よくわかりません。ここにこのような質問がたくさんあることは知っていますが、それらは非常にケース固有のものです。私のコードで何かが間違っているのではないかと思っています。私は助けに感謝します!

私のメインアクティビティファイル(MainActivity.java)は次のとおりです。

package com.example.maptest;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;  
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;

public class MainActivity extends FragmentActivity {

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

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.main_menu, menu);
    return true;
}

private static final int ACTIVITY_CREATE = 0;

private void configureSettings() {
    Intent intent = new Intent(this, ConfigureSyncActivity.class);
    startActivityForResult(intent, ACTIVITY_CREATE);
}

private void setLimits() {
    Intent intent = new Intent(this, SetLimitsActivity.class);
    startActivityForResult(intent, ACTIVITY_CREATE);
}

private void violations() {
    Intent intent = new Intent(this, ViolationsActivity.class);
    startActivityForResult(intent, ACTIVITY_CREATE);
}

@Override
public boolean onOptionsItemSelected(MenuItem item){

    switch(item.getItemId()) {

    case R.id.limits:
        setLimits();
        return true;

    case R.id.sync:
        configureSettings();
        return true;

    case R.id.violations:
        violations();
        return true;


    }
    return super.onOptionsItemSelected(item);
}

}

そして最後になりましたが、私のxmlレイアウトファイルは次のとおりです。

 <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.SupportMapFragment"/>
4

1 に答える 1

1

xmlレイアウトファイルで次の変更を試してください。それは私のために働いた:

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

それでもうまくいかない場合は、クラス名の階層を確認してみてください。

于 2013-02-19T16:36:56.943 に答える