Created
November 7, 2016 08:33
-
-
Save androidcodehunter/61aeb502aca536e9ee250f22a098b613 to your computer and use it in GitHub Desktop.
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
<!-- | |
android:colorAccent will affect your text colors of negative or positive buttons. | |
android:textColor will affect your title text color of dialog. | |
android:textColorPrimary will affect your message color of dialog.--> | |
<style name="GGDialog" parent="Theme.AppCompat.Light.Dialog.Alert"> | |
<item name="android:textColor">@color/theme_blue</item> | |
<item name="android:background">@color/white</item> | |
<item name="android:textColorPrimary">@color/theme_red</item> | |
<item name="colorAccent">@color/theme_red</item> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment