如何在textview中添加边框到文本android

前端之家收集整理的这篇文章主要介绍了如何在textview中添加边框到文本android前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Android中,如何在文字添加边框?我想在TextView中的文本边框周围,而不是在TextView中.有什么办法吗?如果是这样,请指出我需要做的正确步骤.

解决方法

尝试这个..
<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello_world"
    android:textColor="#f8f36a"
    android:textSize="65sp"
    android:shadowColor="#ff0000" 
    android:shadowRadius="2"/>

结果是

您可以为这样的文本创建自定义边框.

原文链接:https://www.f2er.com/android/311885.html

猜你在找的Android相关文章