Android Studio版本:2.3.3,Android 4.3CardView:圖像的邊角在Android 4.3中不是圓角的?
我正在使用CardView並希望圓形圖像的邊角。
佈局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="@dimen/card_width"
android:layout_height="@dimen/card_width"
android:layout_gravity="center"
android:gravity="center"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
card_view:cardCornerRadius="15dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/img_lights" />
</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
正如你可以SES我設置
card_view:cardCornerRadius="15dp
下面是結果:
但圖像的角不圓。爲什麼?
可能重複[如何使圓角的ImageView?](https://stackoverflow.com/questions/2459916/how-to-make-an-imageview-with-rounded-corners) –