How to make custom style for example for green buttons and background of message using AlertDialog. ???
Definition of AlertDialog:
AlertDialog.Builder alert = new AlertDialog.Builder(About.this, R.style.MY_AlertDialog);
And style:
<style name="MY.AlertDialog" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:windowBackground">@color/green</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowCloseOnTouchOutside">false</item>
</style>