Unable to find explicit activity class

狂风中的少年 提交于 2019-12-24 05:49:57

问题


I just began android development, and I'm stuck on this issue. When the application runs, I'm greeted with the following:

http://imgur.com/yIFxvd4

(In case the link is broken or the image can't be seen, it is simply a menu in landscape mode with three buttons.)

This is what I want to see. However, when I click "Start Playing" which should cause the android emulator to go to a blank screen, the emulator quits our of the app and says, "Unfortunately, MainMenu has been stopped."

This is the error I get in LogCat:

04-15 21:49:08.779: W/dalvikvm(985): threadid=1: thread exiting with uncaught exception 
(group=0x409961f8)

04-15 17:56:24.539: E/AndroidRuntime(739): FATAL EXCEPTION: main
04-15 17:56:24.539: E/AndroidRuntime(739):
android.content.ActivityNotFoundException: Unable to find explicit activity class
{com.example.quote.board/android.inputmethodservice.Keyboard}; have you declared this
activity in your AndroidManifest.xml?
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1508)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
android.app.Instrumentation.execStartActivity(Instrumentation.java:1384)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
android.app.Activity.startActivityForResult(Activity.java:3190)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
android.app.Activity.startActivity(Activity.java:3297)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
com.example.quote.board.MainMenu$1.onClick(MainMenu.java:30)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
android.view.View.performClick(View.java:3480)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
android.view.View$PerformClick.run(View.java:13983)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
android.os.Handler.handleCallback(Handler.java:605)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
android.os.Handler.dispatchMessage(Handler.java:92)
04-15 17:56:24.539: E/AndroidRuntime(739):  at android.os.Looper.loop(Looper.java:137)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
android.app.ActivityThread.main(ActivityThread.java:4340)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
java.lang.reflect.Method.invokeNative(Native Method)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
java.lang.reflect.Method.invoke(Method.java:511)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
04-15 17:56:24.539: E/AndroidRuntime(739):  at 
dalvik.system.NativeStart.main(NativeMethod)

I currently have two classes. Here is my first class, called MainMenu:

package com.example.quote.board;

import android.inputmethodservice.Keyboard;
import android.os.Bundle;
import android.annotation.SuppressLint;
import android.app.ActionBar;
import android.app.Activity;
import android.content.Intent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainMenu extends Activity {

    @SuppressLint({ "NewApi", "NewApi", "NewApi" })
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main_menu);
    ActionBar action= getActionBar();
    action.hide();

    Button startPlaying = (Button) findViewById(R.id.startPlaying);
    Button specialKeyboard = (Button) findViewById(R.id.specialKeyboards);
    Button info = (Button) findViewById(R.id.info);

    startPlaying.setOnClickListener(new OnClickListener(){
        public void onClick(View v){
            Intent intent = new Intent(getApplicationContext(), Keyboard.class);
            startActivity(intent);
        }
    });

}
}

My other class is called Keyboard:

package com.example.quote.board;

import android.app.ActionBar;
import android.app.Activity;
import android.os.Bundle;

public class Keyboard extends Activity{

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.keyboard);
    ActionBar action = getActionBar();
    action.hide();
}



}

Here is my AndroidManifest.xml file:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.quote.board"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme"
         >
        <activity
            android:name=".MainMenu"
            android:screenOrientation="landscape"
            android:label="@string/title_activity_main_menu" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

        <activity
            android:name="com.example.quote.board.Keyboard"
            android:screenOrientation="landscape"
            android:label="@string/app_name" >
       </activity>

    </application>

</manifest>

By the way, I had been making this with my friend, who works on a windows computer. We used git to transfer the files to me. Also, this application works the perfectly the way it should for him.


回答1:


Solution " have you declared this activity in your AndroidManifest.xml? " write on manifest.xml

<activity android:name=".nameOfYourActivity"> </activity>



回答2:


Fix imports: Your import in the MainMenu source is not correct. You wrote: import android.inputmethodservice.Keyboard; But you need: com.example.quote.board.Keyboard



来源:https://stackoverflow.com/questions/16047340/unable-to-find-explicit-activity-class

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!