1

我在 Play 商店中确实有很多基于活动的普通旧应用程序。两天以来,我尝试使用 Fragments 迈出第一步。我还是不明白。我已经阅读了几乎所有关于 Fragments 的文档、博客和指南,但我愚蠢的简单测试应用程序拒绝从 MyActivity 上的 ClassNotFoundException 开始。

所以这是我到目前为止所做的:

起始 FragmentActivity 称为 MyActivity:

public class MyActivity extends FragmentActivity {

    @Override
    public void onCreate(Bundle bundle) {
        super.onCreate(bundle);

        setContentView(R.layout.myactivity);
    }
}

这是布局/myactivity.xml:

<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal" >

    <fragment
        class="com.test.app.Table1List"
        android:id="@+id/table1list"
        android:layout_height="match_parent"
        android:layout_width="match_parent" />
</LinearLayout>

这是 ListFragment 及其 XML 文件:

public class Table1List extends ListFragment {

    @Override
    public View onCreateView(LayoutInflater layoutInflater, ViewGroup viewGroup, Bundle bundle) {
        if (viewGroup == null) {
            return null;
        }

        return layoutInflater.inflate(R.layout.table1list, viewGroup);
    }
}

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <ListView
        android:drawSelectorOnTop="false"
        android:fastScrollEnabled="true" 
        android:id="@id/android:list"
        android:layout_height="fill_parent"
        android:layout_width="fill_parent" />

    <TextView
        style="@style/TextViewMedium"
        android:id="@id/android:empty"
        android:text="@string/txt_noresult" />
</LinearLayout>

叫我愚蠢,但我总是在名为 MyActivity 的 FragmentActivity 启动期间得到一个 ActivityNotFoundException。

非常感谢任何帮助。

编辑

我从几天前拿走了最新的 v4 兼容包。我几乎每 10 分钟发布一次清洁项目——不行。

这是清单:

<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:versionCode="1"
    android:versionName="1.0"
    package="com.test.app" >

    <uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="11" />

    <application
        android:hardwareAccelerated="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/txt_appname" >

        <activity
            android:label="@string/txt_appname"
            android:name="MyActivity" >

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

编辑 2:这是 LogCat:

Unable to resolve superclass of Lcom/test/app/MyActivity; (25)
Link of class 'Lcom/test/app/MyActivity;' failed
Shutting down VM
threadid=3: thread exiting with uncaught exception (group=0x4001b188)
    Uncaught handler: thread main exiting due to uncaught exception
    java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.test.app/com.test.app.MyActivity}: java.lang.ClassNotFoundException: com.test.app.MyActivity in loader dalvik.system.PathClassLoader@44bfda38
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2417)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2512)
    at android.app.ActivityThread.access$2200(ActivityThread.java:119)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1863)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:123)
    at android.app.ActivityThread.main(ActivityThread.java:4363)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:521)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
    at dalvik.system.NativeStart.main(Native Method)
    Caused by: java.lang.ClassNotFoundException: com.test.app.MyActivity in loader dalvik.system.PathClassLoader@44bfda38
    at dalvik.system.PathClassLoader.findClass(PathClassLoader.java:243)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:573)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:532)
    at android.app.Instrumentation.newActivity(Instrumentation.java:1021)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2409)
    ... 11 more

编辑 3:我确实重新安装了支持包,使用 Compatability Package v4 创建了一个新项目,将所有内容都剥离为 MyActivity 和一个片段 -> 相同的错误。我什至使用以前的 Support v4 包(第 6 版)进行了测试。

这是我在近三年的 Android 开发(市场上有很多应用程序)之后使用 Fragments 的第一步。似乎整个事情都被打破了。

这是 Eclipse 中的项目树 - 仍然非常需要任何帮助。

在此处输入图像描述

4

2 回答 2

11

我不知道这是否能解决您的问题,但查看您的屏幕截图,除了Referenced Libraries项目之外,一切对我来说都是正确的。那不应该再存在了,因为最新的 ADT 版本 17 会自动检测libs文件夹中的所有 jar。Referenced Libraries您可以通过从构建路径中删除对 android 支持 jar 的显式引用来摆脱该项目。

我有一个非常相似的问题,并且完全被难住了一段时间,直到我阅读了这篇博客文章,其中包含很多关于这个问题的信息,所以即使删除Referenced Libraries不起作用,它也可能值得一读。

于 2012-03-26T10:19:03.033 回答
0

有些东西似乎没有按预期工作。将兼容性jar复制到一个文件夹libs然后重新编译重新打包

于 2012-03-25T17:58:01.540 回答