有没有办法在Android上的TextView中添加内部阴影?

时间:2011-07-29 09:46:04

标签: android textview shadow

我想在inner shadow上制作一个textview,但我在网上找不到任何相关的例子。

在Android上有没有办法做到这一点?

我知道这些属性:

android:shadowColor
android:shadowRadius
android:shadowDx
android:shadowDy

我错过了一些有用的东西吗?

2 个答案:

答案 0 :(得分:20)

如果您正在寻找这样的内部阴影:

enter image description here

您可以尝试MagicTextView

    <com.qwerjk.better_text.MagicTextView
        xmlns:qwerjk="http://schemas.android.com/apk/res/com.qwerjk.better_text"
        android:textSize="42dp"
        android:textColor="#FFffff00"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:padding="10dp"
        qwerjk:innerShadowDy="3"
        qwerjk:innerShadowColor="#FF000000"
        qwerjk:innerShadowRadius="5"
        android:text="InnerShadow" />

注意:我做了这个,并且为了未来的旅行者发布的内容比OP更多。  它是临界垃圾邮件,但是在主题上,也许可以接受?

答案 1 :(得分:11)

如果你希望TextView有这样的内部阴影:

enter image description here

你必须像这样使用9-patch drawable:

enter image description here

将9-patch drawable设置为TextView的背景。

您提到的属性:android:shadowColor, android:shadowRadius, android:shadowDx, android:shadowDy用于其他目的,它们会创建文字阴影:

enter image description here