-1

Androidでフラグメントについて簡単な演習をしようとしていますが、いくつかのエラーがあり、どれが問題なのかわかりません。アプリケーションは 2 つのフラグメントで構成され、1 つはもう 1 つの近くにあり、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>

fragment2.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 ファイルには、ルート要素が 1 つだけ含まれている必要があることに注意してください。あなたは2つ持っています。

于 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 に答える