java - 在android中使用Fragment标签时出现XML错误

标签 java android xml android-fragments

我正在尝试在我的代码中实现 fragment 标签,以便我可以将它与 GoogleMap API 一起使用。然而,一开始我就因为错误“二进制 XML 文件行”而陷入困境。 我尝试在论坛中搜索它,但无法解决它。 请帮助我理解这个问题。

我将所有文件附加到我的activity_main.xml

<LinearLayout 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"
    tools:context="com.example.mapdemo.MainActivity" >

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

</LinearLayout>

我的activity_map.xml 文件如下

  <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:map="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout 
        android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
        <TextView 
            android:text="Loc:"
            android:textSize="20sp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="left|center_vertical"
            />

        <EditText 
            android:id="@+id/edt_locationName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center|center_vertical"
            android:ems="10"/>
        <Button 
            android:id="@+id/btn_GetLocation"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Go"
            android:layout_gravity="right|center_vertical"
            android:onClick="geoLocate"/>

    </LinearLayout>

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

</LinearLayout>

我的主要 java 文件为

    package com.example.mapdemo;

import android.support.v4.app.FragmentActivity;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;


public class MainActivity extends FragmentActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_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.main, 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);
    }
}

日志猫如下:-

05-19 14:45:15.763: E/AndroidRuntime(28629): FATAL EXCEPTION: main
05-19 14:45:15.763: E/AndroidRuntime(28629): Process: com.example.mapdemo, PID: 28629
05-19 14:45:15.763: E/AndroidRuntime(28629): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.mapdemo/com.example.mapdemo.MainActivity}: android.view.InflateException: Binary XML file line #36: Error inflating class fragment
05-19 14:45:15.763: E/AndroidRuntime(28629):    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2436)
05-19 14:45:15.763: E/AndroidRuntime(28629):    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2498)
05-19 14:45:15.763: E/AndroidRuntime(28629):    at android.app.ActivityThread.access$900(ActivityThread.java:179)
05-19 14:45:15.763: E/AndroidRuntime(28629):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1324)

最佳答案

在您的 MainActivity 中,添加以下导入语句

import android.support.v4.app.Fragment;

编辑:我不确定这是否有效,但尝试将您的 fragment 标记更改为此

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

关于java - 在android中使用Fragment标签时出现XML错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30321799/

相关文章:

php - 如何在日志文件中保存xml错误消息?

Java - 初始化没有泛型类型的泛型变量;

java - 如何创建一对 String 和 List<String>?

android - ACE 如何修改 TimeChart X 轴上的缩放按钮行为

android - Android Studio 如何知道新的依赖版本?

android - chromecast 如何连接到其他设备?

xml - 在 Twig 中打印 XML 的内容

java - 使用Java删除XML中的空标签

java - 在诊断 Swing 中 alt-tab 上的绘画问题时需要帮助

java - 如何在单个文件java中读取包含多个内容的JSON