There is problem with my styles. I would like prepare AlertDialog totaly colered in yellow without shadow. Here is code below:
AlertDialog.Builder alert = new AlertDialog.Builder(About.this, R.style.Mystyle);
<style name="AppTheme" parent="Theme.AppCompat">
<item name="android:dialogTheme">@style/Mystyle.Dialog</item>
<style name="Mystyle.Dialog" parent="Theme.AppCompat.Light.Dialog">
<item name="colorAccent">@color/color_accent</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowCloseOnTouchOutside">false</item>
Any help? Actually messsage is in white color.