gpt4 book ai didi

android - 使用 kotlin 的带圆角的 Imageview

转载 作者:行者123 更新时间:2023-11-29 15:34:33 31 4
gpt4 key购买 nike

我已经使用 Imageview 创建了布局,并且设置了带角半径的自定义背景,父布局是有角的,但 Imageview 不是圆角的。我怎样才能实现这个目标?

提前致谢。

bg.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<solid
android:color="@color/list_item_bg"/>

<stroke
android:width="2dp"
android:color="@color/colorAccent" />
<corners
android:topLeftRadius="20dp"
android:topRightRadius="20dp"/>

</shape>

list_item.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/list_item_bg"
>

<ImageView
android:id="@+id/food_image"
android:layout_width="match_parent"
android:layout_height="150dp"
android:layout_marginRight="5dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="2dp"
android:scaleType="centerCrop"
android:clipToOutline="true"
android:background="@drawable/image_bg"
android:src="@drawable/sample_image"/>
</LinearLayout>

enter image description here

最佳答案

创建 res/drawable/round_outline.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="10dp" />
</shape>

将可绘制对象设置为 ImageView 的背景

android:background="@drawable/round_outline"

在 ImageView 上(布局)

android:clipToOutline="true"

关于android - 使用 kotlin 的带圆角的 Imageview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53863619/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com