是否可以在TextView中为文本添加效果?

Hes*_*sam 1 android text effect textview

在我的启动画面中,我有一个TextView,它显示了应用程序的名称.是否可以在此文本中添加效果(例如阴影)?

Geo*_*rge 6

你可以使用这样的东西来制作阴影,它可以工作

<TextView
    android:id="@+id/text"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    android:shadowColor="#555555"
    android:shadowDx="5.0"
    android:shadowDy="5.0"
    android:shadowRadius="3.0"
    />
Run Code Online (Sandbox Code Playgroud)