enter image description here

I am trying to make my app look more beautiful. It looks beautiful the majority of the time but when an new activity is loading the user is shown the screen above. There is actually a dialog box being shown as I am running a thread but the screen shot didn't pick it up (it is where the screen is lighter). So my question is how can I show something other than the non populated layout. Ideally just the background color would be shown until the layout is populated with content and then I can show the layout to the user.

Any other solutions are welcome.

link|improve this question

64% accept rate
feedback

1 Answer

You might want to look at using a theme for your activity: http://developer.android.com/guide/topics/ui/themes.html

A theme will show up if no view has been loaded. So in your activity you could use the theme as a place holder until all of your content has been loaded. For this to work you must not load the view until the content has been loaded (only use setContentView once all the content has been loaded). This will show your theme (background color or image - whatever you want) until the actual view is ready. Once your view is ready then calling the setContentView will override the theme and show your view instead.

A theme is loaded for an activity if specified in your manifest file

<activity android:name=".packageName.activityName"                    
android:theme="@style/Theme.MyCustomTheme"/>

If you only wanted to have a default background color then you could use the following code theme in the res/Themes file:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.MyCustomTheme" parent="android:Theme">    
<item name="android:windowBackground">@color/myBackgroundColor</item>     
<item name="android:windowNoTitle">true</item>    </style>
</resources>

The color/myBackgroundColor should be defined in the res/color xml file

Good luck

link|improve this answer
This didn't work. It still loads the layout. I solved it yesterday by setting the top padding of my layout to 1000dip then changing it back to 20dip before I close the dialog box. Not the most majestic solution but it works – jiduvah May 17 '11 at 8:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.