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

link|improve this question
Do you know how I can access the title TextView? I'm using the default AlertDialog, didn't extend it. – user1173367 Feb 11 at 12:47
feedback

1 Answer

try using android:textColorLink="#783302"

link|improve this answer
Unfortunately the color stays the same with this attribute. <item name="android:textColorLink">@color/privateColor</item> – user1173367 Feb 11 at 12:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.