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