读书人

运用静止的欢迎页面

发布时间: 2012-08-13 13:21:53 作者: rapoo

使用静止的欢迎页面

//本来以为应该很简单、载入布局文件、欢迎页面图片当做背景、停几秒跳转、try {Thread.sleep(2000);} catch (InterruptedException e) {// TODO Auto-generated catch blocke.printStackTrace();}Intent i = new Intent(WelcomeActivity.this,FindMeActivity.class);startActivity(i);//发现效果出不来、重启一个线程、问题解决、new MyThread().start();class MyThread extends Thread{public void run(){try {Thread.sleep(2000);} catch (InterruptedException e) {// TODO Auto-generated catch blocke.printStackTrace();}Intent i = new Intent(WelcomeActivity.this,FindMeActivity.class);startActivity(i);}}

读书人网 >移动开发

热点推荐