<FrameLayout android:id="@+id/inapp_interstitial_image_frame_layout"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen">


    <RelativeLayout
        android:id="@+id/interstitial_image_relative_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:layout_margin="40dp">

        <ImageView
            android:id="@+id/interstitial_image"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:scaleType="centerCrop"
            android:visibility="visible" />

    </RelativeLayout>

    <com.clevertap.android.sdk.customviews.CloseImageView
        android:contentDescription="inapp_close_btn"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_gravity="top|end"
        android:adjustViewBounds="true" />
</FrameLayout>