0

私は最近、Eclipse を使用してアプリを開発する方法を学び始めました。そのためのアプリとメニューを作成しました。アプリを開くと、5 秒間表示されてからメニューに移動するはずの起動画面が表示されます。起動画面の後、アプリがクラッシュします。私は4.1.2を開発しています。私のログキャットレポートは次のとおりです

05-08 13:46:21.170: V/MediaPlayer(16864): message received msg=2, ext1=0, ext2=0

05-08 13:46:21.170: V/MediaPlayer(16864): playback complete

05-08 13:46:21.170: V/MediaPlayer(16864): callback application

05-08 13:46:21.170: V/MediaPlayer(16864): back from callback

05-08 13:46:23.585: D/Instrumentation(16864): 
checkStartActivityResult  :Intent { act=com.example.first_app.MENU }

05-08 13:46:23.585: D/Instrumentation(16864): 
checkStartActivityResult  inent is instance of inent:

05-08 13:46:23.590: W/dalvikvm(16864): threadid=11: thread exiting with uncaught exception (group=0x40f122a0)
05-08 13:46:23.590: E/AndroidRuntime(16864): FATAL EXCEPTION: Thread-1262

05-08 13:46:23.590: E/AndroidRuntime(16864): android.content.ActivityNotFoundException: No 
Activity found to handle Intent { act=com.example.first_app.MENU }

05-08 13:46:23.590: E/AndroidRuntime(16864):    at 

android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1580)
05-08 13:46:23.590: E/AndroidRuntime(16864):    at 

android.app.Instrumentation.execStartActivity(Instrumentation.java:1431)
05-08 13:46:23.590: E/AndroidRuntime(16864):    at 

android.app.Activity.startActivityForResult(Activity.java:3446)
05-08 13:46:23.590: E/AndroidRuntime(16864):    at 

android.app.Activity.startActivityForResult(Activity.java:3407)
05-08 13:46:23.590: E/AndroidRuntime(16864):    at 

android.app.Activity.startActivity(Activity.java:3617)
05-08 13:46:23.590: E/AndroidRuntime(16864):    at 

android.app.Activity.startActivity(Activity.java:3585)
05-08 13:46:23.590: E/AndroidRuntime(16864):    at 

com.example.first_app.Splash$1.run(Splash.java:28)

05-08 13:46:23.615: V/MediaPlayer-JNI(16864): release

05-08 13:46:23.615: V/MediaPlayer(16864): setListener

05-08 13:46:23.615: V/MediaPlayer(16864): disconnect

05-08 13:46:23.620: V/MediaPlayer(16864): destructor

05-08 13:46:23.620: V/MediaPlayer(16864): disconnect

私のコードは

package com.example.first_app;

import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;

public class Menu extends ListActivity{

String classes[] = {"startingPoint", "example1", "example2", "example3", "example4", "example5", "example6"};



@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setListAdapter(new ArrayAdapter<String>(Menu.this,         android.R.layout.simple_list_item_1, classes));
}


@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
    // TODO Auto-generated method stub
    super.onListItemClick(l, v, position, id);
    String cheese = classes[position];
    try{                    
    Class ourClass = Class.forName("com.example.first_app." + cheese);
    Intent ourIntent = new Intent(Menu.this, ourClass);
    startActivity(ourIntent);
    }catch(ClassNotFoundException e){
        e.printStackTrace();
    }
}   
}

また、マニフェストを次のように持っています

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

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".Splash"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".startingPoint"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="com.example.first_app" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <activity
        android:name=".Menu"  android:label="@string/app_name" >
        <intent-filter>
            <action android:name="come.example.first_app.MENU" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
</application>
</manifest>
4

1 に答える 1

1

タイプミスがあります: <action android:name="**come**.example.first_app.MENU" />

「com」ではなく「com」と入力するつもりでした

参考までに、私が見つけた方法はエラーログにありました。この線:

05-08 13:46:23.590: E/AndroidRuntime(16864): android.content.ActivityNotFoundException: No 

Intent { act=com.example.first_app.MENU } を処理するアクティビティが見つかりました

アプリで「com.example.first_app.MENU」というアクティビティを作成しようとしていたが、そのアクティビティはプロジェクトの一部ではなかったことを示しています。Android マニフェストにそのノードがまったくないことを期待していました。しかし、タイプミスでそこにあることがわかりました。お役に立てば幸いです。

于 2013-05-09T16:36:10.557 に答える