Skip to content

Instantly share code, notes, and snippets.

@Takhion
Created June 3, 2015 15:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Takhion/9e545bdf61016ae74861 to your computer and use it in GitHub Desktop.
Save Takhion/9e545bdf61016ae74861 to your computer and use it in GitHub Desktop.
Custom dialog Activity style
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="CustomDialog" parent="@style/Base.Theme.AppCompat.Light.Dialog.FixedSize">
<item name="android:windowCloseOnTouchOutside">false</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowIsFloating">false</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowClipToOutline">false</item>
<item name="android:statusBarColor">@android:color/black</item>
</style>
</resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment