本文主要是介绍简单的启动界面,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
源代码
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;public class SplashActivity extends Activity{private final int TIME=4000; //时间为4000毫秒public void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_first);new Handler().postDelayed(new Runnable(){@Overridepublic void run() {Intent intent = new Intent(SplashActivity.this,UploadActivity.class); //跳转到主界面SplashActivity.this.startActivity(intent);SplashActivity.this.finish();}}, TIME);}
布局文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical"android:background="@drawable/first"></LinearLayout>
这篇关于简单的启动界面的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!