要調整Android MaterialCardView的圓角大小,可以通過設置cardCornerRadius屬性來實現。在XML布局文件中,可以使用以下代碼來設置圓角大小:
<com.google.android.material.card.MaterialCardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="8dp"
...>
在上面的代碼中,app:cardCornerRadius屬性設置了MaterialCardView的圓角大小為8dp。可以根據需求調整這個數值來改變圓角的大小。