-1

我正在尝试在 Android 中做一个关于片段的简单练习,但我有一些错误,我不知道是哪个问题。应用程序包含 2 个片段,一个靠近另一个片段,形成 2 个矩形(正如我所说,这只是对片段理解的练习),所以这是我的代码:

文件fragment1.xml

  <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" 
android:background="#00FF00" >

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Questo è il frammento #1"
    android:textColor="#000000"
    android:textSize="25sp" />


</LinearLayout>

Fragments2.xml 是一样的,从这里,它只改变背景颜色和文本。

文件main.xml

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

<fragment 
    android:name="com.tia.Fragments.Fragment1"
    android:id="@+id/fragment1"
    android:layout_weight="1"
    android:layout_width="0px"
    android:layout_height="match_parent" />
<fragment 
    android:name="com.tia.Fragments.Fragment2"
    android:id="@+id/fragment2"
    android:layout_weight="1"
    android:layout_width="0px"
    android:layout_height="match_parent" />

</LinearLayout>

文件Fragment1.java

package com.tia.fragments;

import android.app.Activity;
import android.app.Fragment;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

public class Fragment1 extends Fragment {

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
    return inflater.inflate(R.layout.fragment1, container,false);
}

}

文件 Fragment2.java 相同,仅更改“R.layout.fragment2”

现在,当我尝试在模拟器上运行它时,我得到了这个异常:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.tia.fragments/com.tia.fragments.FragmentsActivity}: android.view.InflateException: Binary XML file line #7: Error inflating class fragment
4

2 回答 2

0

您的 LinearLayout 没有结束标签。XML 格式不正确。请记住,每个 XML 文件都必须有一个且只有一个根元素;你有两个。

于 2013-10-22T15:09:37.497 回答
0

改变

android:name="com.ita.Fragments.Fragment1"

android:name="com.ita.Fragments.Fragment2"

android:name="com.tia.fragments.Fragment1"

android:name="com.tia.fragments.Fragment2"

你拼错了包名。你可以在这里阅读更多关于

于 2013-10-22T15:09:42.633 回答