就像一支黄色荧光笔。如何在两端圆角的 TextView 文本上画一条细黄线?
谢谢你
您可以使用渐变并根据需要控制它,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="#FFFF00" android:centerColor="#FFFF00"
android:endColor="#FFFF00" android:angle="0" />
<corners android:radius="30dp" />
</shape>
并在 xml 中将 textview 引用到该渐变,如下所示:
android:background="@drawable/gredient"
希望能帮到你。