I saw this effect in an app named "Umano" (picture below). The background image is (I assume) loaded from a URL and added as a background to the layout BUT blurred as you can see. How can I change my code (given below) such that i can achieve this effect?
My XML:
<LinearLayout
android:id="@+id/dragView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#eeeeee"
android:clickable="true"
android:focusable="false"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="68dp"
android:orientation="horizontal" >
<TextView
android:id="@+id/name"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center_vertical"
android:paddingLeft="10dp"
android:text="Product Details"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout>