gpt4 book ai didi

java - 安卓 : Error inflating class fragment

转载 作者:搜寻专家 更新时间:2023-11-01 08:45:43 25 4
gpt4 key购买 nike

XML布局文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.gaurav.googlemap.HomeMap" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />

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

</RelativeLayout>

Java文件

package com.beproject.ourway;

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

public class HomeMap extends FragmentActivity {

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

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

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}

因为我之前也搜索过这个问题,所以我做了以下事情来解决

1.导入以下类

import android.support.v4.app.Fragment;  
import android.support.v4.app.FragmentActivity;

2.扩展FragmentActivity

我仍然在 logcat 中收到此错误

Error inflating class fragment

还有什么办法可以解决吗?谢谢。

最佳答案

鉴于您使用了“支持 fragment ”,您需要将 MapFragment 替换为 SupportMapFragment。这样做应该可以解决问题。

使用:

class="com.google.android.gms.maps.SupportMapFragment"

代替:

android:name="com.google.android.gms.maps.MapFragment"

所以你的 xml 必须是这样的:

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

关于java - 安卓 : Error inflating class fragment,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28524986/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com