Le fond de notification dans Android Lollipop est blanc. Comment puis-je le changer?

Je veux afficher une notification d'un message dans mon application. Dans les versions précédentes d'Android, tout est ok, mais en Sucette la notification d'arrière-plan est blanc.
J'ai utilisé ce code XML pour ma notification de mise en page dans layout_message_notification.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout_messageNotification"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/transparent">

    <LinearLayout
        android:layout_width="0dp"
        android:layout_weight=".2"
        android:layout_height="wrap_content"
        android:background="@android:color/transparent">

        <ImageView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:scaleType="fitCenter"
            android:src="@drawable/message_icon"/>

    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_weight=".8"
        android:layout_height="wrap_content"
        android:background="@android:color/transparent">

        <TextView
            android:id="@+id/textView_notification_title"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:gravity="right|center_vertical"
            android:layout_margin="15dp"/>

    </LinearLayout>

</LinearLayout>

Ma notification en sucette est indiqué comme ceci:
Le fond de notification dans Android Lollipop est blanc. Comment puis-je le changer?

Comment puis-je procéder à la notification d'arrière-plan sombre ou transparente, comme dans les versions précédentes d'Android?

source d'informationauteur Mansour