美文网首页
【Android】程序启动图的小细节

【Android】程序启动图的小细节

作者: 峰豆豆 | 来源:发表于2021-02-24 14:52 被阅读0次

    同事问我的问题,他在APP启动的时候发现,默认设置的启动背景和后台拉取的广告重叠了。大概效果是这个意思。

    Activity的布局xml主要就是,外层ConstraintLayout,上面一个ImageView。ImageView主要用来显示后台广告图片。

    但是始终发现,ImageView有一个和ConstraintLayout一样的背景图。

    奇怪了好一阵,后来看到values中style的使用的是

    <item name="android:background">@drawable/launch_background</item>
    

    改成就好了

    <item name="android:windowBackground">@drawable/launch_background</item>
    

    区别,windowBackground和名字意思一样,就是整个窗口的背景。background在style中定义呢,就是给使用style的xml里的控件都设置上这个背景。

    相关文章

      网友评论

          本文标题:【Android】程序启动图的小细节

          本文链接:https://www.haomeiwen.com/subject/radsfltx.html