档案: 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
答案 0 :(得分:0)
您的LinearLayout没有结束标记。 XML格式错误。请记住,每个XML文件都必须只有一个根元素;你有两个。
答案 1 :(得分: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"
你错误拼写了包裹名称。您可以阅读有关here
的更多信息