Is there a way to change the color of the title underline in an AlertDialog? I already changed the title color through a custom style definition (see below), but I didn't found any xml attribute for the underline.
<style name="CustomTitle" parent="@android:style/TextAppearance.Holo">
<item name="android:textColor">@color/green</item>
</style>
I'm running Android 4.
Edit: That's how I create the AlertDialog
Builder ad = new AlertDialog.Builder(new ContextThemeWrapper(this,
R.style.DialogPrivate));
ad.setTitle("Custom Dialog");
ad.setMessage("blaaaaa");
ad.setPositiveButton("test", null);
ad.setNegativeButton("test2", null);
ad.show();
And how it looks like at the moment Screenshot