Created
April 7, 2016 16:13
-
-
Save Jawnnypoo/ed9a61042177961db2112f637c18560f to your computer and use it in GitHub Desktop.
AppCompatDialog theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> | |
<!-- Customize your theme here. --> | |
<item name="colorPrimary">@color/colorPrimary</item> | |
<item name="colorPrimaryDark">@color/colorPrimaryDark</item> | |
<item name="colorAccent">@color/colorAccent</item> | |
<item name="android:windowBackground">@color/white</item> | |
<item name="android:textColorPrimary">@color/black</item> | |
<item name="alertDialogTheme">@style/AppAlertDialogStyle</item> | |
</style> | |
<style name="AppAlertDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert"> | |
<item name="colorAccent">@color/colorAccent</item> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment