214

可能重复:
Android - 文本上的阴影?

如何在TextView.

任何想法?

4

4 回答 4

443

把这些放在 values/colors.xml

<resources>
    <color name="light_font">#FBFBFB</color>
    <color name="grey_font">#ff9e9e9e</color>
    <color name="text_shadow">#7F000000</color>
    <color name="text_shadow_white">#FFFFFF</color>
</resources>

然后在您的布局 xml 中,这里有一些 TextView 的示例

带有深色阴影的光上的浮动文本示例

<TextView android:id="@+id/txt_example1"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:textSize="14sp"
                  android:textStyle="bold"
                  android:textColor="@color/light_font"
                  android:shadowColor="@color/text_shadow"
                  android:shadowDx="1"
                  android:shadowDy="1"
                  android:shadowRadius="2" />

在此处输入图像描述

带有深色阴影的浅色蚀刻文本示例

<TextView android:id="@+id/txt_example2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="14sp"
                android:textStyle="bold"
                android:textColor="@color/light_font"
                android:shadowColor="@color/text_shadow"
                android:shadowDx="-1"
                android:shadowDy="-1"
                android:shadowRadius="1" />

在此处输入图像描述

Light with Dark shadow 上清晰的文本示例

<TextView android:id="@+id/txt_example3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="14sp"
                android:textStyle="bold"
                android:textColor="@color/grey_font"
                android:shadowColor="@color/text_shadow_white"
                android:shadowDx="-2"
                android:shadowDy="-2"
                android:shadowRadius="1" />

在此处输入图像描述

注意正值和负值...我建议您自己使用颜色/值,但最终您可以调整这些设置以获得您想要的效果。

于 2012-04-29T15:15:12.040 回答
211

也许你会考虑使用android:shadowColor , android:shadowDx, android:shadowDy, android:shadowRadius; 或者setShadowLayer()

于 2010-07-21T08:47:08.560 回答
66
TextView textv = (TextView) findViewById(R.id.textview1);
textv.setShadowLayer(1, 0, 0, Color.BLACK);
于 2012-02-26T16:22:02.867 回答
1

完整答案

将这两行添加到父视图,否则当视图绑定小于阴影偏移时,文本阴影将被剪裁

机器人:clipChildren =“假”

机器人:clipToPadding="假"

例子:

<androidx.constraintlayout.widget.ConstraintLayout
            android:clipChildren="false"
            android:clipToPadding="false"
           ... >

        <TextView
         style="@style/TextShadowStyle"
          ....
            />

文字阴影样式:

 <style name="TextShadowStyle">
        <item name="android:shadowColor">@color/black</item>
        <item name="android:shadowDx">10</item>
        <item name="android:shadowDy">10</item>
        <item name="android:shadowRadius">5</item>
    </style>
于 2021-03-12T16:08:38.720 回答