我想让我的登录活动与整个活动的背景,包括手机的时钟本身就像这样这是我的代码
< LinearLayout xmlns:android =“http://schemas.android.com/apk / …
您需要使用NoActionBar样式删除ActionBar颜色。
有两种选择。
将windowNoTitle样式放在style.xml中 例如:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="windowNoTitle">true</item> </style>
将此代码放在Activity上。
requestWindowFeature(Window.FEATURE_NO_TITLE); getSupportActionBar().hide();
另外: 如果您还隐藏了导航按钮,则使用样式XML中的FullScreen选项。
<item name="android:windowFullscreen">true</item>