执行Android Project时出错“活动类不存在”,

egmofgnx  于 2022-09-21  发布在  Android
关注(0)|答案(3)|浏览(179)

我在Eclipse中创建了示例安卓项目,但在执行过程中收到错误:Activity类{com.example.best/com.example.best.MainActivity}不存在。

但项目中存在MainActivity类

package com.example.best;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

以下是控制台上打印的错误消息

[2015-03-01 22:01:58 - best] Starting activity com.example.best.MainActivity on device EAAZCY30C637
[2015-03-01 22:01:59 - best] New package not yet registered with the system. Waiting 3 seconds before next attempt.
[2015-03-01 22:02:02 - best] Starting activity com.example.best.MainActivity on device EAAZCY30C637
[2015-03-01 22:02:02 - best] New package not yet registered with the system. Waiting 3 seconds before next attempt.
[2015-03-01 22:02:05 - best] Starting activity com.example.best.MainActivity on device EAAZCY30C637
[2015-03-01 22:02:05 - best] New package not yet registered with the system. Waiting 3 seconds before next attempt.
[2015-03-01 22:02:08 - best] Starting activity com.example.best.MainActivity on device EAAZCY30C637
[2015-03-01 22:02:08 - best] New package not yet registered with the system. Waiting 3 seconds before next attempt.
[2015-03-01 22:02:11 - best] Starting activity com.example.best.MainActivity on device EAAZCY30C637
[2015-03-01 22:02:12 - best] ActivityManager: Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] cmp=com.example.best/.MainActivity }
[2015-03-01 22:02:12 - best] ActivityManager: Error type 3
[2015-03-01 22:02:12 - best] ActivityManager: Error: Activity class {com.example.best/com.example.best.MainActivity} does not exist.

以下是我的清单文件的内容

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

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.best.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>

我应该怎么做才能解决这个问题?

ubof19bj

ubof19bj1#

你的样品中没有错误。我已经在我的机器上测试了它,它工作正常。

请尝试以下步骤。项目-->清洁

如果不起作用,那么尝试创建新的工作区

5kgi1eie

5kgi1eie2#

每当在应用程序中添加新活动时,都需要将其添加到清单文件中,并添加一个新标记。请确保您正在这样做,否则将不会考虑新的活动。

嗯,我不能在你们的样品中发现任何错误。我创建了一个与您的包名称相同的演示项目,粘贴了确切的清单以及MainActivity,它在我的端工作。

oalqel3c

oalqel3c3#

如果您的目标设备当前处于安全模式,阻止其运行来自第三方的活动,也可能会发生这种情况。

在这种情况下,通过重新启动设备来禁用安全模式应该会有所帮助。

https://www.digitaltrends.com/mobile/how-to-turn-safe-mode-on-and-off-in-android/

相关问题