我已经定义了一个在加载过程中显示的闪屏。但取决于互联网连接,加载可能只需要600毫秒,有时甚至需要5000毫秒。所以我定义启动画面至少显示3000毫秒,这样用户就不会被闪烁的屏幕激怒。我按以下方式定义启动画面的开始:privatevoidsplashScreen(){setContentView(R.layout.splashscreen);splash=(ImageView)findViewById(R.id.splashscreenLayer);startSplashTime=newDate();newLoadingThread().start();}在LoadingThread中