我在我的应用中使用android.support.v7.widget.CardView
。如果我为卡片指定非零cardCornerRadius
,则会在20岁以上的API版本中显示边框(边框的颜色由指定的cardBackgroundColor
值确定)。
这是我的CardView
布局。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/cardContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
app:cardBackgroundColor="#000"
app:cardCornerRadius="1dp"
app:cardElevation="2dp"
tools:context=".MainActivity">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
...........
...........
</FrameLayout>
</android.support.v7.widget.CardView>
如何在保持圆角半径的同时摆脱这个边界?