集合视图中所选项目的圆角
Rounded corners of selected item in collection view
我有一个collectionview.When我点击图片,选中的项目的背景变成橙色,你能帮我说一下,我怎样才能把这个橙色变成圆角background.I写在Android.Please,帮助
enter image description here
我认为最简单的方法是在图像外添加一个 Frame
并设置其圆角和背景颜色(确保您的图标是透明背景)。
<Frame HorizontalOptions="Start" CornerRadius="10" BackgroundColor="Orange" WidthRequest="40" HeightRequest="40" Padding="0">
<Image Source="heart.png" Aspect="AspectFill"></Image>
</Frame>
效果:
我有一个collectionview.When我点击图片,选中的项目的背景变成橙色,你能帮我说一下,我怎样才能把这个橙色变成圆角background.I写在Android.Please,帮助 enter image description here
我认为最简单的方法是在图像外添加一个 Frame
并设置其圆角和背景颜色(确保您的图标是透明背景)。
<Frame HorizontalOptions="Start" CornerRadius="10" BackgroundColor="Orange" WidthRequest="40" HeightRequest="40" Padding="0">
<Image Source="heart.png" Aspect="AspectFill"></Image>
</Frame>
效果: