我使用下面的代码来使用片段。我是第一次开发它。当我在emultor 4.2中运行代码或使用android 2.3.3运行代码时,下面的代码给出了这个错误。
错误
引起:java.lang.ClassNotFoundException:com.example.android.fragments.ArticleFragment in loader dalvik.system.PathClassLoader [/data/app/com.example.fragmentdemo-2.apk]
代码:
MainActivity.java
public class MainActivity extends FragmentActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.news_articles);
}
}
ArticleFragment.java
public class ArticleFragment extends Fragment {
public ArticleFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
return inflater.inflate(R.layout.article_fragment, container, false);
}
}
HeadlinesFragment.java
public class HeadlinesFragment extends Fragment {
public HeadlinesFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
return inflater.inflate(R.layout.head_lines_fragment, container, false);
}
}
news_articles.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:orientation="horizontal" >
<fragment
android:id="@+id/head_lines_fragment"
android:name="com.example.fragmentdemo.HeadlinesFragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
<fragment
android:id="@+id/article_fragment"
android:name="com.example.android.fragments.ArticleFragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2" />
</LinearLayout>
article_fragment.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"
android:orientation="vertical"
tools:context=".FragmentDemo" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Articla-1" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Articla-2" />
</LinearLayout>
headlines_fragment.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Today's HeadLines"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.fragmentdemo"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.fragmentdemo.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:2)
news_article.xml
中
<fragment
android:id="@+id/article_fragment"
android:name="com.example.android.fragments.ArticleFragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2" />
com.example.android.fragments.ArticleFragment
确实存在吗?
我猜通过查看另一个片段,它应该是com.example.fragmentdemo.ArticleFragment
答案 1 :(得分:0)
错误告诉我,在news_articles.xml文件中,您没有指向ArticlesFragment类的正确位置。
查看文件结构和ArticleFragment所在的包,并确保它与您在xml文件中指定的路径相匹配。
编辑
根据对其他答案的评论,我可以看到您指定的ArticleFragment
所属的软件包不存在。
将主xml中类的路径更改为com.example.fragmentdemo.ArticleFragment
答案 2 :(得分:0)
不要用户Fragment标签。
使用com.example.android.fragments.ArticleFragment
代替。
我不清楚你的道路。这应该
“mypackage.ArticleFragment”