我正在使用只有一个片段容器的片段,并试图使状态栏和导航栏透明以显示片段的内容。
我使用这种风格作为活动主题,但结果是一个透明的状态栏,显示活动布局,如图所示
<style name="AuthTheme" parent="AppTheme">
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
</style>