我试图让启动布局出现 5 秒钟,然后切换到主菜单布局。屏幕空白约 5 秒,然后弹出主菜单布局。如果我只是在不睡觉的情况下运行启动布局,它运行得很好,所以我认为这不是问题。有任何想法吗?
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
try
{
Thread.sleep(5000);
}
catch (InterruptedException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
mainMenu();
}
private void mainMenu()
{
setContentView(R.layout.mainmenu);
}