简单的android启动跳转页面

贵有恒,何必三更起、五更眠、最无益,只怕一日曝、十日寒。这篇文章主要讲述简单的android启动跳转页面相关的知识,希望能为你提供帮助。
java代码示例:
package com.rcl;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.view.Window;
public class QiDong extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.second);
/*启动页面*/
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent i=new Intent(QiDong.this,LoginDenLu.class);
startActivity(i);
QiDong.this.finish();
}
},3000);
}
}

简单的android启动跳转页面

文章图片

案例演示:
简单的android启动跳转页面

文章图片

简单的android启动跳转页面

文章图片

【简单的android启动跳转页面】 

    推荐阅读