這是下面的cardview代碼。如何將邊框設置爲我的卡片視圖?
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/cv"
android:background="@drawable/cardborder"
card_view:cardUseCompatPadding="true"
card_view:cardElevation="4dp"
card_view:cardCornerRadius="5dp">
下面
是cardborder.xml裏面我是用作爲cardview
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<solid android:color="#ffffff" />
<stroke android:width="1dip"
android:color="#f1efec"/>
<corners android:radius="20dip"/>
</shape>
增加<筆畫寬度可以看到周圍的cardview邊界。 –
我增加了它5仍然無法看到任何邊界 –
檢查此[回答](https://stackoverflow.com/a/46467680/1594998) – Balflear