I would like to add round corner to left corners of my ImageView so I tried with that :
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/teal_blue" />
<corners android:topLeftRadius="10dp"
android:topRightRadius="0.01dp"
android:bottomLeftRadius="5dp"
android:bottomRightRadius="0.01dp"/>
</shape>
If I change any BottomRight/left or TopRight nothing happens but if I change the topLeftRadius, each corner is rounded.
I do not understand why, any advice ?