TextView的白色文本

时间:2017-07-21 12:51:39

标签: java android textview

我想在下图的底部实现TextView的背景效果。 抱歉我的英语不好...... enter image description here

2 个答案:

答案 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检查文档以获取更多详细信息