首页 > 代码库 > Android欢迎界面
Android欢迎界面
package edu.hpu.init;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import edu.hpu.logic.R;
import edu.hpu.viewpager.MyViewPagerActivity;
public class StartActivity extends Activity {//延迟1秒
private static final long delayTime = 1000;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);
setContentView(R.layout.splash);// 使用Handler的postDelayed方法,3秒后执行跳转
new Handler().postDelayed(new Runnable() {//必须加上StartActivity,否则默认是该Runable接口
public void run() {goHome();}}, delayTime);}private void goHome() {Intent intent = new Intent(this, MyViewPagerActivity.class);startActivity(intent);this.finish();
}}
<!-- 欢迎界面 -->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".StartActivity" ><ImageViewandroid:layout_width="match_parent"android:layout_height="match_parent"android:adjustViewBounds="true"android:background="@drawable/logo"android:scaleType="centerCrop" /></RelativeLayout>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。