我正在尝试在和活动中实现一个基本片段,它正在抛出一个错误:
以下是我的课程:
片段类:
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;
}
}
My Fragment 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" />
当我运行它时,它会给出以下错误:
无法启动activty ComponentInfo {com.example.electronicmenu / dds.DDSViewActivity}:android.view.InflateException:binary xml file line#10:错误扩充类片段。
答案 0 :(得分: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" />