我试图通过应用主题来更改 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"
..

奇怪的是,当我在布局中手动应用样式时,它起作用了。

最佳答案

您不会像任何其他组件一样设置 KeyboardView 的样式,因为键盘定义克服了 KeyboardView defs。一些提示:

不要理会文本大小:组件会找到完美的大小以完美地放入键中。

要定义键大小和其他属性,请在键盘 xml 定义上进行。见 this guide

最终,this 可能也会帮助你。

关于android - 为 KeyboardView 应用主题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4266185/

10-10 20:22