-3

簡単なコードを書きましたが、エミュレータが常にこれを表示する理由がわかりませんerror:"the application has stopped unexpectedly android please try again"。私はそれを取り除こうとしましたが、うまくいきませんでした。ありがとうございます。 http://www.imageurlhost.com/images/msvwuxotq5fcpg63q8br_Logcat.png

 package com.tusway.BasicTutorial;
    import android.app.Activity;
    import android.os.Bundle;
    public class myMenu extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    }
    }

私のxml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tusway.BasicTutorial"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MyMain"
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=".myMenu"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="com.tusway.BasicTutorial.CLEARSCREEN" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
</application>
</manifest>
4

2 に答える 2

-1

試したことはありませんが、マニフェスト ファイルを次の編集済みファイルに置き換えてください。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tusway.BasicTutorial"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MyMain"
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="com.tusway.BasicTutorial.CLEARSCREEN"
             />

</application>
</manifest>
于 2013-01-05T06:33:54.447 に答える
-2

パッケージ名「com.tusway.BasicTutorial」を変更してください

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

「com.tusway.basictutorial」に変更してください

于 2013-01-04T12:32:22.477 に答える