4

我正在构建一个简单的 hello world 应用程序来了解 Android 兼容性包。我能够让应用程序在 3.2 模拟器上运行,但是当我在 2.3.3 模拟器上运行它时,我得到了

10-12 11:36:14.474: WARN/dalvikvm(469): Unable to resolve superclass of Lcom/example/MyActivity; (11) 
10-12 11:36:14.564: WARN/dalvikvm(469): Link of class 'Lcom/example/MyActivity;' failed 
10-12 11:36:14.564: DEBUG/AndroidRuntime(469): Shutting down VM 
10-12 11:36:14.584: WARN/dalvikvm(469): threadid=1: thread exiting with uncaught exception (group=0x40015560) 
10-12 11:36:14.624: ERROR/AndroidRuntime(469): FATAL EXCEPTION: main java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example/com.example.MyActivity}: java.lang.ClassNotFoundException: com.example.MyActivity in loader dalvik.system.PathClassLoader[/data/app/com.example-1.apk]

所以很明显它找不到FragmentActivity(这是com.example.MyActivity的超级)。我只是不知道为什么。

需要注意的一些事项:

1)我正在关注http://mobile.tutsplus.com/tutorials/android/android-compatibility-working-with-fragments/上的教程,这不是很彻底。

2)我很确定我正在使用 maven 正确地将兼容性包构建到 APK 中。我将 jar 安装在我的本地 maven 存储库中,并依赖它进行编译。我认为如果我没有正确构建它,它就不会在 3.2 模拟器上运行。

3) 我尝试使用 IntelliJ 和 maven-compiler-plugin 进行构建。结果相同。

任何帮助将不胜感激。谢谢。

编辑...这是清单

<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="11" />
<uses-permission android:name="android.permission.INTERNET" />

<application android:label="@string/app_name" android:icon="@drawable/icon">
    <activity android:name=".MyActivity"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".TutViewerActivity"
              android:label="@string/app_name" >
    </activity>
</application>
<uses-sdk android:minSdkVersion="7" />

和 MyActivity 定义

public class MyActivity extends FragmentActivity implements TutListFragment.OnTutSelectedListener
4

3 回答 3

4

我遇到了同样的问题,问题是兼容性包没有正确包含。异常是模棱两可的,因为它说它找不到 MyActivity,但完整的堆栈跟踪将显示它无法链接的 FragmentActivity。检查范围,并确保您的存储库中存在正确的版本,并且确实在构建时包含它。

如果您仍然遇到此问题,请尝试在此处包含您的 pom.xml。

于 2011-12-01T00:10:42.393 回答
1

我有同样的问题,兼容性包没有正确内置到apk中。为此,您可以使用以下步骤:

来自developer.android.com:

要将其中一个库添加到您的 Android 项目:

In your Android project, create a directory named libs at the root of your project (next to src/, res/, etc.)
Locate the JAR file for the library you want to use and copy it into the libs/ directory.

For example, the library that supports API level 4 and up is located at <sdk>/extras/android/support/v4/android-support-v4.jar.
Add the JAR to your project build path.

In Eclipse, right-click the JAR file in the Package Explorer, select Build Path > Add to Build Path.
于 2012-06-29T13:19:36.573 回答
0

将以下内容添加到 MyActivity 的导入中:

import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;

即使你没有使用这些类。

于 2013-06-02T12:15:53.050 回答