gpt4 book ai didi

android - 仅在实体右侧使用 Stroke 可绘制

转载 作者:行者123 更新时间:2023-11-29 18:30:03 26 4
gpt4 key购买 nike

如何在不使用插图的情况下仅在可绘制对象的右侧使用笔划?

enter image description here

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<size
android:width="20dp"/>
<solid android:color="@color/colorWhite" />
<stroke
android:width="1dp"
android:color="@color/colorPink">
</stroke>
</shape>
</item>
</layer-list>

编辑:由于重叠问题无法使用负插图 enter image description here

最佳答案

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

<item android:right="2dp">
<shape>
<solid android:color="@android:color/white" />
</shape>
</item>
</layer-list>

或使用填充:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<solid android:color="#ff0000" />
<padding android:right="1dp"/>
</shape>
</item>

<item>
<shape>
<solid android:color="@android:color/white" />
</shape>
</item>
</layer-list>

或:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<solid android:color="#ffffff"/>
</shape>
</item>
<item android:gravity="right">
<shape>
<size android:width="1dp"/>
<solid android:color="#ff0000"/>
</shape>
</item>
</layer-list>

或:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:bottom="-2dp"
android:left="-2dp"
android:top="-2dp">
<shape>
<solid android:color="@android:color/white" />
<stroke
android:width="1dp"
android:color="#ff0000" />
</shape>
</item>
</layer-list>

关于android - 仅在实体右侧使用 Stroke 可绘制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56782285/

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