ActivityNotFoundException using Android Saripaar library



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

它很简单,我想从一个活动移动到另一个验证成功后,使用android sariparar一切都很酷,直到我得到一个运行时错误在logcat,错误是

07-20 23:10:59.312: E/AndroidRuntime(2562): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.projectcandy/android.view.Menu};你有没有在你的AndroidManifest.xml中声明这个活动?

请特别检查

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

com . example。

projectcandy是我的包,我的类是Menu。但是为什么日志显示是"Android"。视图"?

到目前为止我做了什么?

1)在舱单中插入过滤器2)清理项目3)从清单中删除活动,并使用应用程序节点> add等重新添加它。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>

    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();
    }
}

也许我在on click类的参数上做错了什么。谢谢大家

事实上事情是

Menu是android包"android.view"中的一个接口。这就是为什么你会得到这个错误。试着用其他名字重命名你的"Menu"类,你的问题就解决了。

相关内容

  • 没有找到相关文章

最新更新