clipToPadding basically means "If the view extends beyond its borders into the fill area, overwrite this image with the parent addition."
. , , . , , clipToPadding=false, .
, , , ListView RecyclerView. . clipToPadding=false, , .
, . . " ", "". .

clipToPadding=true, , , :

clipToPadding=false :

XML, :
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:background="#8888ff">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="40dp"
android:paddingRight="40dp"
android:paddingTop="20dp"
android:paddingBottom="20dp"
android:clipToPadding="false"
android:layout_centerInParent="true">
<View
android:layout_width="170dp"
android:layout_height="170dp"
android:background="@drawable/oval"
android:alpha="0.5"
android:elevation="5dp"
/>
</RelativeLayout>
</RelativeLayout>
oval drawable:
<shape android:shape="oval">
<solid android:color="#f2f2f2"/>
</shape>