0

我一直在使用这个网站来解决我的 android/eclipse 问题。但是在这一刻我非常卡住我几乎搜索了关于这个问题的每个线程,但我找不到解决方案。

它很简单,我想在验证成功后从一个活动转移到另一个活动,使用 android saripaar 一切都很顺利,直到我在 logcat 中遇到运行时错误,错误是

07-20 23:10:59.312: E/AndroidRuntime(2562): android.content.ActivityNotFoundException: 找不到明确的活动类 {com.example.projectcandy/android.view.Menu}; 您是否在 AndroidManifest.xml 中声明了此活动?

请特别检查这个

{com.example.projectcandy/android.view.Menu}

com.example.projectcandy 它是我的包,我的类是 Menu。但是为什么日志猫给我看 'Android.view' 呢?

到目前为止我做了什么?

1)在清单中插入过滤器行 2)清理项目 3)从清单中删除活动并使用应用程序节点>添加等再次添加。 4)更改我制作意图的方式。真的我不知道该怎么办知道

我在这里发布我的清单、MainActivity.java 和“Menu.class”

显现

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

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.projectcandy.MainActivity"
        android:label="@string/app_name" android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
<activity android:name=".Menu">
        <intent-filter>
            <action android:name="com.example.projectcandy.Menu" />
            <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
    </activity>

从 mainactivity.java 创建方法

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

    validator = new Validator(this);
    validator.setValidationListener(this);

    usernamereg=(EditText)findViewById(R.id.usernamereg);
    password=(EditText)findViewById(R.id.password);
    Loginb=(Button)findViewById(R.id.Loginb);
    Loginb.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
           validator.validate();

        }
    });

onValidationSucceeded 方法(来自 android saripaar 库)

    @Override
public void onValidationSucceeded() {
    // TODO Auto-generated method stub
    Toast.makeText(this, "Iniciando sesion...", Toast.LENGTH_SHORT).show();
    String user= usernamereg.getText().toString();
    String psw= password.getText().toString();
    if (user.equals("admin") && psw.equals("1234")){
        Intent i = new Intent(this, Menu.class );
        startActivity(i);  
    }
    else {
        Toast t= Toast.makeText(this,"Usuario o contraseña incorrectos",     Toast.LENGTH_SHORT);
        t.show();
    }

}

也许我在点击类的参数上做错了。谢谢大家

4

1 回答 1

2

其实事情是

菜单是包“android.view”的android中的一个接口。这就是您收到此错误的原因。尝试用任何其他名称重命名您的“菜单”类,您的问题将得到解决。

于 2014-07-21T03:37:02.407 回答