<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv_test"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="#FF4567"
android:gravity="center"
android:text="Hello World!"
android:layout_centerInParent="true"
/>
<com.example.shadowviewlibrary.CustomShadowView
android:id="@+id/shadow_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:shadow_color="@color/colorPrimary"
app:shadow_fuzzy_radius="25"
app:shadow_height="10dp"
app:shadow_position="down"
app:view_id="@id/tv_test" />
</RelativeLayout>