gpt4 book ai didi

android - 只有两侧的形状可绘制

转载 作者:太空宇宙 更新时间:2023-11-03 12:08:28 24 4
gpt4 key购买 nike

我正尝试在 XML 中实现像这样的 ShapeDrawable,但到目前为止没有成功。

enter image description here

如何使 Stroke 仅在两侧可见?

这可能吗?

否则我使用什么云(我将其作为 TextView 的背景)。

最佳答案

这是一个使用 LayerListDrawable 的解决方案:

background_white_lateral_border.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

<item>
<shape android:shape="rectangle" >
<solid android:color="@android:color/white" />
</shape>
</item>

<item>
<inset
android:insetLeft="1dp"
android:insetRight="1dp" >
<shape android:shape="rectangle" >
<solid android:color="@android:color/black" />
</shape>
</inset>
</item>

</layer-list>

注意:这首先绘制了一个白色矩形,然后绘制了一个黑色矩形,在其顶部左右插入了 1dp,给出了横向边框的效果。这只是要记住的事情,以防您担心性能(在我看来,对于像这样的小样式来说,性能可以忽略不计)。

关于android - 只有两侧的形状可绘制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19363327/

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