White background issues occur when the Android application starts.

Source: Internet
Author: User

During the Android application development process, in order for the application to have a better user experience, you often add a startup page when you start the application, but when you add the launch page, we find that the white background will appear when you start the application, and then enter the background of the launch page that we set up.

The workaround is as follows:

Creating a start activity in style style,my_welcome_background is the splash page background you need to display. The following style is then added to the theme attribute in the Start page activity in the manifest file.

<style name= "Welcometheme" parent= "Theme.AppCompat.Light.NoActionBar" >
<item name= "Windowactionbar" >false</item>
<item name= "Windownotitle" >true</item>
<item name= "Android:windowbackground" > @drawable/my_welcome_background</item>
</style>

The manifest file is modified as follows:

<activity
            android:name=. Views. Welcomeactivity "
            android:label=" @string/ App_name "
            android:launchmode=" Singletask "
            android:theme= "@style/welcometheme" >
            <intent-filter>
                 <action android:name= " Android.intent.action.MAIN "/>
                 <category android:name= "Android.intent.category.LAUNCHER"/>
             </intent-filter>
</activity>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.