如何在ActionBarSherlock的标题上设置shadowColor?
我知道如何在其他视图上设置 ShadowColor,但在 ActionBarSherlock 的标题上,阴影未显示。
这是我的 style.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.SherlockClient" parent="@style/Theme.Sherlock">
<item name="abTitleTextStyle">@style/CustomTitle</item>
</style>
<style name="CustomTitle">
<item name="android:textColor">@color/Turquoise</item>
<item name="android:shadowColor">@color/Green</item>
<item name="android:shadowDx">0</item>
<item name="android:shadowDy">0</item>
<item name="android:shadowRadius">3</item>
<item name="android:padding">5dp</item>
</style>
I know how to set shadowColor on other view, but on ActionBarSherlock's title, shadow isn't showing.
here my style.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.SherlockClient" parent="@style/Theme.Sherlock">
<item name="abTitleTextStyle">@style/CustomTitle</item>
</style>
<style name="CustomTitle">
<item name="android:textColor">@color/Turquoise</item>
<item name="android:shadowColor">@color/Green</item>
<item name="android:shadowDx">0</item>
<item name="android:shadowDy">0</item>
<item name="android:shadowRadius">3</item>
<item name="android:padding">5dp</item>
</style>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是为了确认您是否在清单的应用程序标记中定义了自定义样式
@style/Theme.SherlockClient
而不是@style/Theme.Sherlock
Just to confirm have you defined you custom style
@style/Theme.SherlockClient
in application tag in manifest instead of@style/Theme.Sherlock