I have a login page, from login page if the user clicks, it will go to tab page. In tab page I called activity group page. From activity group page it will call home activity page. In home activity I will call webservices. When I click login it shows up with a black screen for a few mins, it take time. That time I have to show splash screen for user until the tab bar is loaded.
I implemented but the below code is not working.
style.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme" parent="@android:style/Theme">
<item name="android:windowBackground">@drawable/quest</item>
</style>
</resources>
androidmanifest.xml
<activity android:name=".HelloTabWidget"
android:theme="@style/Theme">
</activity>
Can anybody give sample code?
Thanks
1 Answer