为 KeyboardView 应用主题
我试图通过应用主题来更改 KeyboardView 的默认样式,但没有成功。我的目标 SDK 是 1.6 和 Xperia X10。有人可以帮忙吗?
/res/vaules/style.xml:
<style name="myTheme" parent="android:Theme">
<item name="android:keyboardViewStyle">@style/aa</item>
</style>
<style name="aa" parent="android:Widget.KeyboardView">
<item name="android:keyTextSize">50sp</item>
<item name="android:keyTextColor">#FF123456</item>
<item name="android:keyPreviewHeight">150dp</item>
<item name="android:labelTextSize">25sp</item>
</style>
Manifest.xml:
<application android:theme="@style/myTheme"
..
奇怪的是,当我在布局中手动应用样式时,它起作用了。
I am trying to change default style of KeyboardView by applying theme with no success. My target SDK is 1.6 and Xperia X10. Can someone help?
/res/vaules/style.xml:
<style name="myTheme" parent="android:Theme">
<item name="android:keyboardViewStyle">@style/aa</item>
</style>
<style name="aa" parent="android:Widget.KeyboardView">
<item name="android:keyTextSize">50sp</item>
<item name="android:keyTextColor">#FF123456</item>
<item name="android:keyPreviewHeight">150dp</item>
<item name="android:labelTextSize">25sp</item>
</style>
Manifest.xml:
<application android:theme="@style/myTheme"
..
Strange thing is that when I apply the style manually in layout, it works.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要像任何其他组件一样设置 KeyboardView 的样式,因为键盘定义克服了 KeyboardView defs。一些提示:
不要为文本大小而烦恼:组件会找到完美的大小以完全适合按键内部。
要定义按键大小和其他属性,请在键盘 xml 定义上进行。请参阅本指南
最终,这个可能也会对您有所帮助。
You doesn't style KeyboardView like any other component, because keyboard definitions overcome KeyboardView defs. Some hints:
Don't bother with the text size: the component find the perfect size to fit perfectly inside keys.
To define key sizes and another attributes, do it on keyboard xml definitions. See this guide
Eventually, this probably will help you too.