<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="35dp">

        <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="30dp"
        android:layout_height="30dp"
        android:layout_gravity="top|end"
        android:layout_marginEnd="30dp"
        android:layout_marginRight="30dp"
        android:layout_marginTop="45dp"
        android:adjustViewBounds="true" />
</FrameLayout>