TimX wrote: > I am trying to make a loading screen, that is generally seen in almost > any app nowadays.
The vast majority of apps I use do not have a loading screen, because they just start up quickly. Rather than investigating how to do a loading screen, I would recommend you work on tuning the startup time of your app instead. In general, that's a better approach for usability and also will save battery life. Getting back to the question in your subject line, you can setVisibility() of a View to be View.GONE or View.INVISIBLE to turn one "off", and to View.VISIBLE to turn one "on". -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Training...At Your Office: http://commonsware.com/training -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en To unsubscribe, reply using "remove me" as the subject.

