0

我正在尝试在和活动中实现一个基本片段,但它抛出了一个错误:

这是我的课程:

片段类:

public class MyFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout._fragment_dds_image, container, false);
    return view;
}

}

我的片段 XML 文件:

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

我试图显示片段的活动:

public class DDSViewActivity extends FragmentActivity {

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

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.ddsview, menu);
    return true;
}}

活动的 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" >

<fragment
    android:id="@+id/fragment1"
    android:name="dds.MyFragment"
    android:layout_width="wrap_content"
    android:layout_height="match_parent" />

当我运行它时,它给了他们以下错误:

无法启动活动 ComponentInfo{com.example.electronicmenu/dds.DDSViewActivity}:android.view.InflateException:二进制 xml 文件第 10 行:膨胀类片段时出错。

链接到完整的堆栈跟踪:

4

1 回答 1

0

使用您的片段类的完全限定名称,例如com.example.myapp.dds.MyFragment

<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" >

    <fragment
        android:id="@+id/fragment1"
        android:name="com.example.myapp.dds.MyFragment"
        android:layout_width="wrap_content"
        android:layout_height="match_parent" />
于 2013-08-02T22:16:27.233 回答