Android ClassNotFoundException immersive_mode

时间:2014-09-10 05:53:07

标签: android android-studio

我有一个示例android项目。我可以使用Android Studio编译和制作项目。我可以生成.apk文件。当我在手机上运行时,出现错误,消息“不幸的是,...应用已停止”

当我通过Android Studio运行项目时,会发生错误,错误消息为"java.lang.ClassNotFoundException: Didn't find class "com.example.edgescreen.immersive_mode.ImmersiveModeActivity" on path: /data/app/com.example.edgescreen-1.apk"

我看到“AndroidManifest.xml”文件中的另一个错误,即使我可以编译并生成“.apk”。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.edgescreen"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="14"
    android:targetSdkVersion="18" />

<application
    android:allowBackup="true"
    android:label="@string/app_name" >
    <activity
        android:name="com.example.edgescreen.immersive_mode.ImmersiveModeActivity"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen"  >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <receiver android:name=".provider.edgescreen" >
        <intent-filter>
            <action android:name="com.samsung.android.cocktail.action.COCKTAIL_UPDATE" />
        </intent-filter>

        <meta-data
            android:name="com.samsung.android.cocktail.provider"
            android:resource="@xml/single_cocktail" />
    </receiver>

    <receiver android:name=".list.CocktailListAdapterProvider" android:enabled="true">
        <intent-filter>
            <action android:name="com.samsung.android.cocktail.action.COCKTAIL_UPDATE" />
        </intent-filter>

        <meta-data
            android:name="com.samsung.android.cocktail.provider"
            android:resource="@xml/list_cocktail" />
    </receiver>

    <service
        android:name=".list.CocktailListAdapterService"
        android:permission="android.permission.BIND_REMOTEVIEWS" />

    <meta-data
        android:name="com.samsung.android.cocktail.mode"
        android:value="edge_single|edge_extended" />

</application>

</manifest>

错误发生在android:name="com.example.edgescreen.immersive_mode.ImmersiveModeActivity" ...消息是“无法解析符号immersive_mode”。

我已检查immersive_mode文件夹并且类ImmersiveModeActivity位于正确的位置。有人可以给我一些解决这个问题的建议吗?

2 个答案:

答案 0 :(得分:0)

默认情况下你的android apk文件需要com.example.edgescreen包来运行Activity,而你的Activity放在immersive_mode包中,所以它无法找到你的{{1}尝试在清单文件中使用某种东西而不是之前的东西,然后再次清理并重新构建项目并运行它

Activity

答案 1 :(得分:0)

您是否尝试过android:name =“。immersiveive_mode.ImmersiveModeActivity”?你的活动路径是否正确?