我想Custom Keyboard
在 Android 中创建一个。我想用作系统键盘。我已经看过许多关于如何使用 android 键盘元素创建自定义键盘来构建 UI 部分的示例项目和教程,即:
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android">
<Row>
<Key/>
</Row>
</Keyboard>
但是,我想构建一个Custom View/UI
使用Buttons
而不是“键盘、行和键”元素等。然后捕获按钮的onTouch
输入事件。
任何有用的建议将不胜感激!
谢谢。