Farbverlauf zur Bildansicht hinzufügen

Ich möchte einen Farbverlauf am unteren Rand meines Bildes einfügen. Etwas wie das :

Ich habe so etwas ausprobiert aber ich bekomme nur den Farbverlauf kein Bild ..

    <ImageView
    android:id="@+id/trendingImageView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/trend_donald_sterling"
    android:src="@drawable/trending_gradient_shape"
  />

trending_gradient_shape:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="rectangle" >

    <gradient
        android:angle="90"
        android:endColor="@android:color/darker_gray"
        android:startColor="@android:color/darker_gray" />

    <corners android:radius="0dp" />

</shape>

Antworten auf die Frage(5)

Ihre Antwort auf die Frage