0

更改活动时我的应用程序崩溃这是我的代码,我正在关注 youtube 上的教程,一切似乎都与他的代码完全一样。看看你能不能帮忙 一切似乎都井井有条,我完全复制了一切,

显现:

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

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

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

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="com.example.helloworld.MAINACTIVITY" />

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

</manifest>

主要活动:

package com.example.helloworld;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.app.Activity;

public class MainActivity extends Activity {

    int counter;
    Button add, sub;
    TextView display;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        counter = 0;
        add = (Button) findViewById(R.id.bAdd);
        sub = (Button) findViewById(R.id.bSub);
        display = (TextView) findViewById(R.id.tvDisplay);
        add.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {

                counter++;
                display.setText("Your Total is " + counter);
            }
        });
        sub.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {

                counter--;
                display.setText("Your Total is " + counter);
            }
        });
    }
}

飞溅.java:

package com.example.helloworld;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
public class Splash extends Activity{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub

        super.onCreate(savedInstanceState);
        setContentView(R.layout.splash);
        Thread timer = new Thread(){
            public void run(){
                try{
                    sleep(5000);

                } catch (InterruptedException e){
                    e.printStackTrace();
                }finally{
                    Intent openStartingPoint = new Intent("com.example.helloworld.MAINACTIVITY");
                    startActivity(openStartingPoint);
                }
            }
        };  
        timer.start();
    }
}




Logcat:

07-19 20:35:36.068: E/AndroidRuntime(1442): FATAL EXCEPTION: Thread-74
07-19 20:35:36.068: E/AndroidRuntime(1442): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.example.helloworld.MAINACTIVITY }
07-19 20:35:36.068: E/AndroidRuntime(1442):     at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1512)
07-19 20:35:36.068: E/AndroidRuntime(1442):     at android.app.Instrumentation.execStartActivity(Instrumentation.java:1384)
07-19 20:35:36.068: E/AndroidRuntime(1442):     at android.app.Activity.startActivityForResult(Activity.java:3190)
07-19 20:35:36.068: E/AndroidRuntime(1442):     at android.app.Activity.startActivity(Activity.java:3297)
07-19 20:35:36.068: E/AndroidRuntime(1442):     at com.example.helloworld.Splash$1.run(Splash.java:23)
4

2 回答 2

1

尝试改变:

Intent openStartingPoint = new Intent("com.example.helloworld.MAINACTIVITY");

至:

Intent openStartingPoint = new Intent(Splash.this, MainActivity.class);
于 2012-07-19T20:58:37.367 回答
-1

我认为应用程序崩溃是因为您在意图过滤器中拼错了“DEFAULT”。

于 2012-07-19T21:07:31.523 回答