大纲文字Android Studio

时间:2015-12-03 14:55:31

标签: android textview outline

我一直在寻找如何概述一个TextView,到目前为止我刚刚发现this question,但是从2010年开始。我认为现在有一种标准的方式来概述文本,但到目前为止我还没有没能成功。我的代码中包含以下内容:

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="#3e3e3e"
    android:shadowColor="#ffffff"
    />

但是我收到以下渲染错误:

  

不支持Paint.setShadowLayer

我很想知道是否有其他方法来概述文本或如何处理此错误!谢谢!

1 个答案:

答案 0 :(得分:6)

尝试设置阴影半径等。只有设置颜色才能使阴影出现。

示例:

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="#3e3e3e"
    android:shadowColor="#ffffff"
    android:shadowDx="2"
    android:shadowDy="2"
    android:shadowRadius="1"
/>