CardView圆角阴影消除的方法
【摘要】 今天我设置了CardView的圆角,但是有阴影,很影响美观。后来经过各种搜索,终于找到了解决办法,那就是将CardView作为根布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/...
今天我设置了CardView的圆角,但是有阴影,很影响美观。后来经过各种搜索,终于找到了解决办法,那就是将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" android:id="@+id/cv_prepare_item" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/transparent" android:clickable="true" android:foreground="?android:attr/selectableItemBackground" app:cardCornerRadius="2dp" app:cardElevation="10dp" app:cardMaxElevation="20dp" app:cardPreventCornerOverlap="false" app:contentPadding="1dp" app:contentPaddingTop="1dp"> ... </android.support.v7.widget.CardView>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
文章来源: blog.csdn.net,作者:WongKyunban,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/weixin_40763897/article/details/109746683
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)