活动失败时MapFragment的初始化

时间:2017-04-07 08:01:14

标签: android xml google-maps-android-api-2 mapfragment

我使用以下XML代码创建MapFragment:

<fragment
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.hashcoder.eegoomain.CustomerHomeActivity"/>

在我的onCreate()方法中,我使用以下代码初始化地图:

protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_customer_home);
    createNavigationDrawerFunction();
    mapFragment = (SupportMapFragment) getSupportFragmentManager()
            .findFragmentById(R.id.map);
    mapFragment.getMapAsync(this);  }

但是,当我在手机上运行此代码时(Redmi Note 4),它显示以下异常:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.hashcoder.eegoomain/com.hashcoder.eegoomain.CustomerHomeActivity}: android.view.InflateException: Binary XML file line #61: Binary XML file line #61: Error inflating class fragment

此代码在其他设备中运行良好。我做错了什么?

0 个答案:

没有答案