close
java:
**經過五秒後跳頁**
//啟用執行序
new Thread(new Runnable() {
@Override
public void run() {
//等待5秒
try{
Thread.sleep(5000);
startActivity(new Intent().setClass(MainActivity.this,LogingActivity.class));
}
catch (InterruptedException e){
e.printStackTrace();
}
}
}).start();
全站熱搜