android为什么有的弹出框是白色,有的是黑色

来源:互联网 发布:nodejs golang java 编辑:程序博客网 时间:2024/04/30 21:23

因为有些人写样式会这么写,所以就出现了弹出框是黑色的

 <application        android:allowBackup="true"        android:icon="@drawable/img_game_players_icon"        android:label="@string/app_name"        android:theme="@android:style/Theme.NoTitleBar" ></application>

而这么写就不会出现此问题,重点是AppBaseTheme继承了系统样式,当然用代码控制显示全屏也是没有此问题的

   <!-- Application theme. -->    <style name="AppTheme" parent="AppBaseTheme">        <!-- All customizations that are NOT specific to a particular API-level can go here. -->         <item name="android:windowNoTitle">true</item>        </style>

0 0
原创粉丝点击