我想在我的
Android应用程序中使白色文本具有黑色轮廓.我不想为textview着色,所以如果那是你的帮助那么我就不知道怎么做了.我想通过使用xml格式的可绘制文件来实现这一点.那么我可以在xml中勾勒出文本的边缘吗?
一种方法是使用阴影:
原文链接:https://www.f2er.com/xml/292370.html<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#FFFFFF" android:shadowColor="#000000" android:shadowDx="0.0" android:shadowDy="0.0" android:shadowRadius="2.0" />
这使白色文本呈现黑色轮廓.根据您喜欢的厚度调整半径.