我在我的Android应用程序中制作启动画面,但是如果我尝试在Run()中启动一个活动,我得到应用程序的错误意外停止,如果我使用setContentView而不是startActivity,则错误也会发生,即使我使用SplashScreen.this.startActivity而不是startActivity,我也会收到错误。我尝试使用TimerTask而不是处理程序,但它发生的相同,我做错了什么?
package name.appname;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
public class SplashScreen extends Activity{
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
Handler handler = new Handler();
handler.postDelayed(getRunnableStartApp(), 1500);
}//public void onCreate(Bundle savedInstanceState)
public Runnable getRunnableStartApp(){
return new Runnable(){
public void run(){
startActivity(new Intent(SplashScreen.this, MainActivity.class));//when i quit this line, no error happens...
finish();
}//public void run()
};//new Runnable()
}//public Runnable getRunnableStartApp()
}//public class SplashScreen extends Activity
这是清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="name.appname"
android:versionCode="1"
android:versionName="1.0">
<application android:allowBackup="false" android:label="@string/app_name">
<activity android:name="SplashScreen"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我抓住了错误:android.content.ActivityNotFoundException,但不知道为什么会发生这种情况
答案 0 :(得分:1)
在清单文件中添加以下内容。缺少MainActivity的条目
<activity android:name=".MainActivity"
android:label="@string/app_name">
</activity>
同时更改此
<activity android:name="name.appname.SplashScreen"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
注意:如果没有任何操作,有些人会认为使用启动画面是邪恶的。检查以下
http://cyrilmottier.com/2012/05/03/splash-screens-are-evil-dont-use-them/
答案 1 :(得分:0)
在Timertask中使用Runnable 我的应用程序和我也有SplashScreen它工作正常。