将左上角添加到ImageView

时间:2015-09-14 18:18:19

标签: android xml imageview

我想在ImageView的左角添加圆角,所以我试着用它:

<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>

如果我更改任何BottomRight / left或TopRight没有任何反应,但如果我更改topLeftRadius,则每个角都是圆角。

我不明白为什么,有什么建议吗?

0 个答案:

没有答案