フラグメントコンテナのみを持つフラグメントを使用しており、ステータスバーとナビゲーションバーを透明にしてフラグメントのコンテンツを表示しようとしています。
このスタイルをアクティビティのテーマとして使用しましたが、結果は透明なステータスバーで、アクティビティのレイアウトが次のように表示されました
<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>