糖尿病康复,内容丰富有趣,生活中的好帮手!
糖尿病康复 > 使用CardView画圆角图片

使用CardView画圆角图片

时间:2022-02-14 05:07:38

相关推荐

使用CardView画圆角图片

导包:

implementation 'androidx.cardview:cardview:1.0.0'

activity.xml:

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="/apk/res/android"xmlns:app="/apk/res-auto"xmlns:tools="/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context=".MainActivity"><androidx.cardview.widget.CardViewandroid:layout_centerInParent="true"app:cardElevation="0dp"app:cardCornerRadius="12dp"android:layout_width="wrap_content"android:layout_height="wrap_content"><ImageViewandroid:layout_width="90dp"android:layout_height="90dp"android:background="@color/black"/></androidx.cardview.widget.CardView></RelativeLayout>

app:cardElevation="0dp"表示阴影为0dp

app:cardCornerRadius="12dp"表示圆角为12dp。

如果不想使用CardView,也可以用Glide框架来设置圆角。

Glide.with(requireContext()).load("/feed/0b55b319ebc4b7458cd9fad9075df01f888215de.jpeg?token=ccf0d4ee285578a3b44f251836e956ef").transform(new RoundedCorners((int) DisplayUtil.dp2px(requireContext(), 12f))).into(binding.supermarketIvHead);

如果觉得《使用CardView画圆角图片》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。