问题标签 [android-custom-keyboard]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 如何使用工具栏/键盘菜单开发自定义键盘?
我看到了这个 github 项目:-
https://github.com/rkkr/simple-keyboard
和
https://github.com/NlptechProduct/Android-Keyboard
但我不懂代码。
请给我任何建议或演示并且不使用 KeyboardView,因为它已被弃用。
此类在 API 级别 29 中已弃用。此类已弃用,因为这只是该应用程序的一个方便的 UI 小部件类。开发人员可以在现有公共 API 之上重新实现。如果您已经依赖该类,请考虑将 AOSP 中的实现复制到您的项目中,或者自己重新实现类似的小部件。
或者向我解释一下 android 键盘我该如何开发。
或建议我如何开发我的自定义键盘应用程序。
android - 自定义键盘:指定的消息队列同步屏障令牌尚未发布或已被移除
我做了一个自定义键盘,最近它随机崩溃了这个日志,
我不知道为什么会发生这个错误,或者由于我的代码的哪一部分,有人可以帮我解决这个问题吗?
java - 在孩子的父母第一个自定义键盘上调用 removeView()
我创建了一个自定义键盘,每当它从 potrait 切换到 lanscape 时,都会出现以下错误并崩溃:
我不知道为什么会出现此错误,请有人帮助我。
android-softkeyboard - 从 AOSP 处理代码后无法实现 KeyboardView。xml 中的错误
弃用 KeyboardView 后,我按照谷歌文档进行操作,正如他们所说,我将 KeyboardView 和 Keyboard 类复制到我的项目中。我按照建议设置的所有内容。
问题是当我运行我的应用程序时,它会因抛出错误充气 KeyboardView的错误而崩溃。
这是我的代码。
这是用于显示建议单词的 CandidateView 类。
这是我的 xml 布局,带有我的自定义 KeyboardView。
这是我得到的错误。
请告诉我我在这方面缺少什么。我需要帮助。
android - 如何将资产中的字体用于自定义键盘
如何在自定义键盘中使用资产中的字体?我的意思是在键盘的按键上使用字体。
它是我的键盘主要布局:
我的字体名称是:
它是我的键盘活动:
提示:我询问并搜索了很多,我明白我应该在这里做键盘上的字体:
字体系列不起作用,请不要提供它,伙计们,我想要一种实用且简单的方法,非常感谢。
android - Popup Hides the Custom Keyboard in Xamarin.Forms
I have designed a Custom Numerical Keyboard but It hides When I activate or use it on Popup Screen(used Rg.Plugin Popup). eg. Like thisImage describing when popup is above on the Keyboard / Popup hides the Keyboard
If I make this screen as the First Screen or If I make this into a Page/View, not the Popup. It looks like this eg., Image above the Page
This is the code I have written -
1- Custom Keyboard (Xamarin forms Custom Renderer)
2- Android Renderer for Custom Keyboard
3- Layout For Keyboard-
4- On XML folder for Designing Keys -
5- Drawable Folder for Backgrounds -
a) For Normal State -
b) For Pressed -
6- Animation -
So, this is the whole code I have done for Custom Keyboard but it's not working as qit should be. Any help will be Ok. I am stuck in this for a long time please help.
android - 创建了虚拟键盘,但即使在虚拟键盘设置中选择新键盘后也会出现默认键盘
我正在为我的 google glass 企业版编写键盘服务,一切进展顺利。但是,当我尝试在文本框中输入文本时,突然键盘不再出现。而是显示系统键盘。即使我选择了特定的虚拟键盘。我能做些什么来解决这个问题?
此外,系统键盘仅显示数值 0-9。它没有任何其他字符作为可供选择的选项。这是预期的行为吗?如何将其更改为包含字母字符/特殊字符?
android-softkeyboard - 使用 Jetpack Compose 构建软件键盘 - 在键盘顶部添加额外的 3 个按钮
我需要创建一个自定义软件键盘并在顶部添加 3 个按钮:下划线、粗体、斜体按钮。
单击 TextField 时,我需要能够显示此自定义键盘。
另外,当用户点击 TextField 时如何调用自定义键盘?