Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created December 19, 2023 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeforfun-jp/0f78ee602a62fa1eaa7af90ecb465aa0 to your computer and use it in GitHub Desktop.
Save codeforfun-jp/0f78ee602a62fa1eaa7af90ecb465aa0 to your computer and use it in GitHub Desktop.
Dialog Full Screen
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Base.Theme.Sample" parent="Theme.Material3.DayNight.NoActionBar">
<!-- Customize your light theme here. -->
<!-- <item name="colorPrimary">@color/my_light_primary</item> -->
</style>
<style name="Theme.Sample" parent="Base.Theme.Sample" />
<style name="DialogTheme" parent="Base.Theme.Sample">
<item name="android:windowNoTitle">true</item>
<item name="android:windowFullscreen">false</item>
<item name="android:windowIsFloating">false</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment