答案 0 :(得分:1)
您可以创建背景可绘制
your_drawable.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<gradient android:angle="0"
android:endColor="#fff"
android:startColor="#c86e6e6e"
android:gradientRadius="100dp"
android:type="radial"/>
</shape>
并添加到textview:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TEST"
android:textColor="#fff"
android:background="@drawable/your_drawable"
android:padding="90dp"
android:textSize="30sp"/>
答案 1 :(得分:0)
您必须使用渐变比例。 go检查文档以获取更多详细信息