无法执行活动的Andr​​oid的方法 [英] Could not execute method of the activity Android

查看:116
本文介绍了无法执行活动的Andr​​oid的方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下按钮:

    <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/btn_create_user"
    android:id="@+id/btn_create_user"
    android:onClick="onClickCreateUser"

    android:layout_alignParentBottom="true"
    android:background="@color/btn_create_user"
    android:layout_alignLeft="@+id/btn_login"
    android:layout_alignStart="@+id/btn_login"
    android:layout_marginBottom="23dp"
    android:layout_alignRight="@+id/btn_login"
    android:layout_alignEnd="@+id/btn_login" />

用下面的onclick功能:

with the following onclick function:

    public void onClickCreateUser(View v){
    Intent i = new Intent("dk.anapp.notebox.activity_createUser");
    startActivity(i);
}

当我preSS的按钮,我得到以下错误:

When i press the button i get the following error:

02-12 18:20:53.526    1598-1598/dk.anapp.notebox E/AndroidRuntime﹕ FATAL EXCEPTION: main
java.lang.IllegalStateException: Could not execute method of the activity
        at android.view.View$1.onClick(View.java:3044)
        at android.view.View.performClick(View.java:3511)
        at android.view.View$PerformClick.run(View.java:14105)
        at android.os.Handler.handleCallback(Handler.java:605)
        at android.os.Handler.dispatchMessage(Handler.java:92)
        at android.os.Looper.loop(Looper.java:137)
        at android.app.ActivityThread.main(ActivityThread.java:4424)
        at java.lang.reflect.Method.invokeNative(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:511)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
        at dalvik.system.NativeStart.main(Native Method)
 Caused by: java.lang.reflect.InvocationTargetException
        at java.lang.reflect.Method.invokeNative(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:511)
        at android.view.View$1.onClick(View.java:3039)
            at android.view.View.performClick(View.java:3511)
            at android.view.View$PerformClick.run(View.java:14105)
            at android.os.Handler.handleCallback(Handler.java:605)
            at android.os.Handler.dispatchMessage(Handler.java:92)
            at android.os.Looper.loop(Looper.java:137)
            at android.app.ActivityThread.main(ActivityThread.java:4424)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:511)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
            at dalvik.system.NativeStart.main(Native Method)
 Caused by: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=dk.anapp.notebox.activity_createUser }
        at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1512)
        at android.app.Instrumentation.execStartActivity(Instrumentation.java:1384)
        at android.app.Activity.startActivityForResult(Activity.java:3190)
        at android.support.v4.app.FragmentActivity.startActivityForResult(FragmentActivity.java:839)
        at android.app.Activity.startActivity(Activity.java:3297)
        at dk.anapp.notebox.Login.onClickCreateUser(Login.java:74)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:511)
            at android.view.View$1.onClick(View.java:3039)
            at android.view.View.performClick(View.java:3511)
            at android.view.View$PerformClick.run(View.java:14105)
            at android.os.Handler.handleCallback(Handler.java:605)
            at android.os.Handler.dispatchMessage(Handler.java:92)
            at android.os.Looper.loop(Looper.java:137)
            at android.app.ActivityThread.main(ActivityThread.java:4424)
            at java.lang.reflect.Method.invokeNative(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:511)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
            at dalvik.system.NativeStart.main(Native Method)

我搜索左右,但唯一的答案我能找到的人谁忘了申报清单中的类

I searched SO but the only answer i could find is for people who forgot to declare the class in the manifest

这是我的清单:

<?xml version="1.0" encoding="utf-8"?>

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

<uses-permission android:name="android.permission.INTERNET" />

<application
    android:name="dk.anapp.notebox.Mediator"
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="dk.anapp.notebox.Login"
        android:label="@string/title_activity_login" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="dk.anapp.notebox.SoloActivity"
        android:label="@string/title_activity_solo" >
        <intent-filter>
            <action android:name="dk.anapp.notebox.SoloActivity" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity
        android:name="dk.anapp.notebox.SpashScreen"
        android:configChanges="orientation|keyboardHidden|screenSize"
        android:label="@string/title_activity_spash_screen"
        android:theme="@style/FullscreenTheme" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="dk.anapp.notebox.SpashScreen"
        android:label="@string/title_activity_spash_screen" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="dk.anapp.notebox.MyGroups"
        android:label="@string/title_activity_my_groups" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="dk.anapp.notebox.activity_createUser"
        android:label="@string/title_activity_activity_create_user" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

那么,什么我做错了?

推荐答案

在你的清单只是做

<activity android:name="dk.anapp.notebox.activity_createUser" />

您应该使用&LT;意向滤光器&gt; 属性只有一次,指定要在启动时运行该活动

You should use this <intent-filter> attribute only once, to specify which Activity to run at startup

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

此外,改变你的code到

Furthermore, change your code to

public void onClickCreateUser(View v){
    Intent i = new Intent(this, Activity_createUser.class);
    startActivity(i);
}

我认为您的活动类叫做 Activity_createUser.java ,如果这不是你应该改变上述新意图(在此情况下,Activity_createUser的.class); ,以配合您的活动类的名称

I assumed your activity class is called Activity_createUser.java, if this is not the case you should change the above new Intent(this, Activity_createUser.class); to match with your activity class' name

这篇关于无法执行活动的Andr​​oid的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆