set background Image to whole application in android

匆匆过客 提交于 2019-12-01 16:18:39

You have to use styles to achieve this Check out this link

Create a theme with your background and use that theme.

sundeep

I have changed the style below, by doing this I am overriding the Theme.NoTitlteBar

<style name="Background" parent="@android:style/Theme.NoTitleBar">
    <item name="android:windowBackground">@android:color/black</item>
    <item name="android:windowNoTitle">true</item>
</style>

Now my manifest file looks like this:

<application  android:theme="@style/Background"/>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!