发布网友 发布时间:2022-04-23 22:55
共4个回答
热心网友 时间:2022-04-27 04:15
这么久了,还是给个明确答案吧
styles.xml:
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:windowAnimationStyle">@style/animationActivity</item>
<item name="android:windowBackground">@drawable/dt_bg</item>你自己的图片设置在这里
</style>
AndroidManifest.xml中Application设置theme
<application
android:theme="@style/AppTheme" >
运行项目便出现你想要的背景
热心网友 时间:2022-04-27 05:33
给你的application设置theme,然后你在theme里面定义activity的background或者写一个style,让每个activity应用(每个都要用这个style不叫麻烦),这样你所有的页面就都是这个背景,除非你代码在activity里面去重新给页面设置背景。theme的定义资源很多,自己去找找看一下筛选一个。
热心网友 时间:2022-04-27 07:08
定义一个baseActivity,在这个里面设置背景,需要使用这张图片的就继承自这个activity.
热心网友 时间:2022-04-27 08:59
manifest里面追问请问具体怎么设置啊?