I'm trying to style an AlertDialog. It works fine on API 23 and 24, but on 19 it doesn't. Here is what it should look like:
And what it looks like on API 19:
I can't find any information on what items I have to edit to change those black colors, or remove that light blue line, or that extra shadow that shouldn't be there, or even a list of the style items that apply to an AlertDialog. Here is what my style looks like. I added a bunch of items that I probably don't need as I was trying to fix this.
<style name="AlertDialogTheme" parent="Base.Theme.AppCompat.Dialog.Alert">
<item name="colorPrimary">#ffffffff</item>
<item name="colorPrimaryDark">#ffffffff</item>
<item name="colorAccent">#ffffffff</item>
<item name="android:actionModeBackground">@color/dialogBackground</item>
<item name="android:textColor">#ffffffff</item>
<item name="android:textColorPrimary">#ffffffff</item>
<item name="android:background">#ff005e9e</item>
<item name="actionModeBackground">@color/dialogBackground</item>
<item name="actionButtonStyle">@color/dialogBackground</item>
<item name="actionBarItemBackground">@color/dialogBackground</item>
<item name="background">@color/dialogBackground</item>
<item name="android:colorBackground">@color/dialogBackground</item>
<item name="android:colorBackgroundCacheHint">@color/dialogBackground</item>
<item name="colorBackgroundFloating">@color/dialogBackground</item>
<item name="colorControlNormal">#ff005e9e</item>
<item name="colorControlActivated">#ff005e9e</item>
<item name="colorControlHighlight">#30FFFFFF</item>
<item name="android:windowBackground">@color/dialogBackground</item>
<item name="android:shadowColor">@color/dialogBackground</item>
</style>
I need some help figuring out what setting I have to change here.
Thanks in advance.