设置cardCornerRadius时,旧版API中的BorderView会显示Border

时间:2016-03-22 13:13:39

标签: android

我在我的应用中使用android.support.v7.widget.CardView。如果我为卡片指定非零cardCornerRadius,则会在20岁以上的API版本中显示边框(边框的颜色由指定的cardBackgroundColor值确定)。

API等级21: enter image description here

API等级19: enter image description here

这是我的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>

如何在保持圆角半径的同时摆脱这个边界?

0 个答案:

没有答案