線形レイアウトの上に緑の色合いを作りたいのですが、次の画像のような内容です
これがUIのコードスニペットです
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="168dp"
android:layout_height="120dp"
android:orientation="vertical"
android:background="@drawable/grid_item_init_border"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="90dp"
android:padding="8dp"
android:orientation="horizontal"
android:background="@color/white"
android:layout_margin="1dp">
<ImageView
android:id="@+id/image"
android:layout_width="80dp"
android:layout_height="match_parent"
android:src="@drawable/no_image" />
<TextView
android:id="@+id/app_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/image"
android:maxLines="2"
android:ellipsize="end"
android:layout_marginLeft="4dp"
android:text="VVVVVVVVVVz"/>
<TextView android:id="@+id/category"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/app_name"
android:layout_below="@+id/app_name"
android:lines="1"
android:ellipsize="marquee"
android:text="xxxxxxxxxxz"/>
</RelativeLayout>
<CheckBox
android:id="@+id/share"
android:layout_width="match_parent"
android:layout_height="30dp"
android:layout_margin="4dp"
android:paddingLeft="24dp"
android:text="CheckBox"
android:button="@drawable/checkbox_white_gray"
android:background="@color/init_grid_item_checkbox_gray"/>
レイアウト上に影を描画するには、コードに何を追加すればよいですか?