ImageView with only one rounded corner
问题 I'm trying to make one rounded corner of ImageView like in the picture below but with bottom right corner. Tried using background shape but it's not working at all. All images loaded by Glide. Should i use something like ViewOutlineProvider ? Is there are an efficient way to do this? Thanks! <shape xmlns:android="http://schemas.android.com/apk/res/android" > <corners android:radius="2dp" android:bottomRightRadius="20dp" android:bottomLeftRadius="0dp" android:topLeftRadius="0dp" android