在SDK 19中使用CardView的cardCornerRadius时不起作用match_parent

时间:2020-07-10 06:09:34

标签: android android-imageview android-cardview

我在CardView中使用了imageview。并在CardView上设置cardCornerRadius。然后,ImageView不会填写CardView。我的代码正在关注。

<androidx.cardview.widget.CardView
 android:layout_width="100dp"
 android:layout_height="100dp"
 app:cardCornerRadius="45dp"
 app:cardBackgroundColor="@color/colorPrimary">
    <ImageView
     android:id="@+id/img_myaccount_avatar"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:scaleType="fitXY"
     android:background="@android:color/black"/>
</androidx.cardview.widget.CardView>

但它的工作方式类似于sdk 19上的工作。红色区域是bug。

0 个答案:

没有答案