Frame Layout
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<FrameLayout
android:layout_width="wrap_content"
android:layout_centerInParent="true"
android:layout_height="wrap_content"
android:background="#FF0000" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_margin="8dp"
android:background="@drawable/bahubali" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="center"
android:background="@drawable/vid" />
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:textColor="#FFF"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:gravity="center_horizontal"
android:padding="3dp"
android:textStyle="bold"
android:background="#99000000"
android:layout_gravity="bottom|center_horizontal"
android:text="Bhahubali" />
</FrameLayout>
</RelativeLayout>