Splash screen while loading resources in android app
问题 I'd like to have a splash screen while loading resources (images and sounds). How do I know everything is loaded? Are all resources loaded at app startup? Thanks 回答1: For accordingly implementing a splash screen in Android you want to: Show a foreground screen with some progress indication for the user. Execute a background thread for doing tasks that take some indefinitive time. Both threads communicating between them, as you need the foreground to show the progress on the background.