如何获得负文本阴影(Android)
我希望我的文本阴影反向显示(文本上方)而不是文本下方。有没有办法像我下面那样获得负“Dy”值?
<item name="android:shadowColor">#000000</item>
<item name="android:shadowDx">0</item>
<item name="android:shadowDy">-1</item>
<item name="android:shadowRadius">0</item>
I want my text shadow to appear reverse (above the text) rather than below the text. Is there a way to have a negative "Dy" value like I have below?
<item name="android:shadowColor">#000000</item>
<item name="android:shadowDx">0</item>
<item name="android:shadowDy">-1</item>
<item name="android:shadowRadius">0</item>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为问题在于 ShadowRadius 需要非零才能使阴影可见。下面的代码可以帮助我在文本上方实现红色阴影:
I think the problem is that shadowRadius needs to be non-zero in order for the shadow to be visible. The following code works for me to achieve a red shadow above the text: