0

私はに取り組んでFragmentsおりAndroid、プログラムでビューを膨らませたいと思っています - LayoutInflater. myclassでは、 which でextends Fragment、次のような基本的なことをしたいと思います。

@Override
public View onCreateView (LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) 
{
    return new View(inflater.getContext());
}

ただし、FragmentActivityこの onCreate メソッドを使用した場合:

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

そしてこれ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="vertical" >

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

    <fragment class="edu.self.myFragment" 
        android:id="@+id/titles"
        android:tag="foo"
        android:layout_width="50px"
        android:layout_height="50px" />

</LinearLayout>

レイアウトでエラーが発生します:

11-11 23:25:18.142: E/AndroidRuntime(1162): Caused by: java.lang.IllegalArgumentException: Binary XML file line #12: Duplicate id 0x7f050000, tag foo, or parent id 0x0 with another fragment for edu.self.myFragment

このエラーを修正するにはどうすればよいですか?

4

1 に答える 1

-1

別のフラグメント内にフラグメントを含む xml をインフレートすることはできません。サブフラグメントを手動で追加する必要があります。

于 2013-07-04T00:15:12.967 に答える