Android,第二个活动没有启动

时间:2013-05-28 18:27:04

标签: java android xml

我有一个基本的Android应用程序,设置了两个活动。问题是第一个打开,只是永远停留在那里,第二个没有启动。

有人能说出错是什么意思吗?

MainActivity.java

package com.desecrationstudios.firstapp;

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

public class MainActivity extends Activity {

int counter;
Button add, sub;
TextView display;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.linear);
    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);
        }
    });
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

}

Splash.java:

package com.desecrationstudios.firstapp;

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

public class Splash extends Activity{

@Override
protected void onCreate(Bundle splash) {
    super.onCreate(splash);
    setContentView(R.layout.splash);
}

}

的AndroidManifest.xml

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

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

<application
    android:allowBackup="true"
    android:icon="@drawable/icon"
    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=".MainActivity"
        android:label="@string/app_name" >
    </activity>

</application>

</manifest>

谢谢!

4 个答案:

答案 0 :(得分:5)

您忘记从MainActivity活动开始Splash活动。所以开始吧:

@Override
protected void onCreate(Bundle splash) {
    super.onCreate(splash);
    setContentView(R.layout.splash);

    // start MainActivity here

     Intent intent=new Intent(this,MainActivity.class);
     startActivity(intent);
}

答案 1 :(得分:2)

您可以尝试使用以下代码替换您的Splash类:

package com.desecrationstudios.firstapp;
import android.app.Activity;
import android.os.Bundle;
public class Splash extends Activity{
private static long SLEEP_TIME = 5;
@Override
protected void onCreate(Bundle splash) {
    super.onCreate(splash);
    setContentView(R.layout.splash);
    IntentLauncher launcher = new IntentLauncher();
    launcher.start();
}
private class IntentLauncher extends Thread {
    public void run() {
        try {
    // Sleeping
        Thread.sleep(SLEEP_TIME*1000);
       } catch (Exception e) {
       Log.e(TAG, e.getMessage());
       }

       // Start main activity
       Intent intent = new Intent(Splash.this, MainActivity.class);
       Splash.this.startActivity(intent);
       Splash.this.finish();
    }
}
}

注意:SLEEP_TIME变量指示您希望显示启动画面的时间。

答案 2 :(得分:1)

你启动了Splash Activity,但是你没有任何东西可以启动第二个。您必须创建Intent并使用startActivity()启动它。

答案 3 :(得分:1)

我看到的问题是你没有通过你的启动活动启动你的MainActivity。

我会推荐这样的东西:

Thread pause = new Thread(){
  public void run(){
    try {
      sleep(3000);
    } catch (InterruptedException e) {
      e.printStackTrace();
    }finally{
      Intent i = new Intent("your.path.to.MAINACTIVITY");
      startActivity(i);
      finish();
    }
  }
};
pause.start();

设置内容视图后,在您的onCreate方法中添加此项。 这将暂停您的应用3秒钟,然后在暂停后启动您的MainActivity。

备注

更改应用暂停的时间以将睡眠(3000)更改为您希望暂停的毫秒数。

同样,在指定意图时,您的类名应该全部为大写,但包名称应全部为小写。