本文主要是介绍android.inputmethodservice.KeyboardView 自定义键盘 字体大小设置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
KeyboardView 设置自定义键盘上文本的属性,其中字体的设置用:android:keyTextSize android:labelTextSize 即可实现!! 亲测!
<android.inputmethodservice.KeyboardView
android:id="@+id/add_keyboard_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true"
android:keyBackground="@drawable/keyboard_key"
android:keyTextColor="@color/c_black"
android:labelTextSize="50sp"
android:keyTextSize="50sp" />
android:keyBackground | Image for the key. | |
android:keyPreviewLayout | Layout resource for key press feedback. | |
android:keyPreviewOffset | Vertical offset of the key press feedback from the key. | |
android:keyTextColor | Color to use for the label in a key. | |
android:keyTextSize | Size of the text for character keys. | |
android:labelTextSize | Size of the text for custom keys with some text and no icon. | |
android:popupLayout | Layout resource for popup keyboards. | |
android:verticalCorrection | Amount to offset the touch Y coordinate by, for bias correction. |
这篇关于android.inputmethodservice.KeyboardView 自定义键盘 字体大小设置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!