为 KeyboardView 应用主题

发布于 2024-10-04 22:12:41 字数 769 浏览 5 评论 0原文

我试图通过应用主题来更改 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

归属感 2024-10-11 22:12:41

您不需要像任何其他组件一样设置 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文