Styling titleDivider im Dialog

Ich frage mich, wie es möglich ist, titleDivider im Dialog zu entfernen (oder die Farbe zu ändern). Es ist eine blaue Linie unter dem auf Honeycomb + -Geräten angezeigten Dialogtitel.

Ich denke, dies ist ein relevantes Stück Layout aus dem SDK, aber da es kein Stilattribut gibt, weiß ich nicht, wie ich es stylen soll. Wenn ich es mit findViewById versuche, gibt es keinen android.R.id.titleDivider

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:fitsSystemWindows="true">
    <TextView android:id="@android:id/title" style="?android:attr/windowTitleStyle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="@android:dimen/alert_dialog_title_height"
        android:paddingLeft="16dip"
        android:paddingRight="16dip"
        android:gravity="center_vertical|left" />
    <View android:id="@+id/titleDivider"
            android:layout_width="match_parent"
            android:layout_height="2dip"
            android:background="@android:color/holo_blue_light" />
    <FrameLayout
        android:layout_width="match_parent" android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="vertical"
        android:foreground="?android:attr/windowContentOverlay">
        <FrameLayout android:id="@android:id/content"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </FrameLayout>
</LinearLayout>

Ich habe versucht, dialogTitleDecorLayout zu überschreiben, das nur auf dialog_title_holo.xml in meiner theme.xml verweist, aber ohne Erfolg. Fehler ist:

Fehler: Fehler: Es wurde keine Ressource gefunden, die dem angegebenen Namen entspricht: attr 'dialogTitleDecorLayout'.

Antworten auf die Frage(15)

Ihre Antwort auf die Frage