gpt4 book ai didi

形状中的 Android 形状

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:33:32 27 4
gpt4 key购买 nike

我想要一个带有两种颜色边框轮廓的 shape 元素。我可以使用 solid 元素做一个单一的颜色轮廓,但这只允许我画一条线。我尝试在我的形状中使用两个 stroke 元素,但这也不起作用。

有没有办法在一个形状内绘制一个形状或在我的形状周围画两条线(顺便说一句,它有圆角)。

最佳答案

我发现 <layer-list>是最好的方法。像这样:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:left="6dp"
android:right="6dp">
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<stroke
android:width="3dp"
android:color="#000000" />
</shape>
</item>
<item
android:bottom="1dp"
android:left="8dp"
android:right="8dp"
android:top="1dp">
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:bottomLeftRadius="2dp"
android:bottomRightRadius="2dp"
android:topLeftRadius="2dp"
android:topRightRadius="2dp" />
<solid android:color="@android:color/white" />

<stroke
android:width="1dp"
android:color="#BDBDBD" />
</shape>
</item>
</layer-list>

然后您需要在 listView 上放置适当的边距行布局,但效果很好。

关于形状中的 Android 形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3088111/

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