0

I am using below code to use fragment. I am developing it first time. Below code give me this error while I run code in emultor 4.2 or phone with android 2.3.3.

Error
Caused by: java.lang.ClassNotFoundException: com.example.android.fragments.ArticleFragment in loader dalvik.system.PathClassLoader[/data/app/com.example.fragmentdemo-2.apk]

Code:

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

3 回答 3

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

于 2013-09-03T05:52:11.823 回答
0

不要用户片段标签。

请改用 com.example.android.fragments.ArticleFragment
。我不清楚你的路径。它应该是“mypackage.ArticleFragment”

于 2013-09-03T06:42:50.887 回答
0

该错误向我表明,在您的 news_articles.xml 文件中,您没有指向 ArticlesFragment 类的正确位置。

查看您的文件结构和您的 ArticleFragment 所在的包,并确保它与您在 xml 文件中指定的路径匹配。

编辑

从对另一个答案的评论中,我可以看到您指定的包ArticleFragment所属的包不存在。

将主 xml 中类的路径更改为com.example.fragmentdemo.ArticleFragment

于 2013-09-03T05:20:55.080 回答