Android 应用程序中内置的自定义“键盘" [英] Custom 'Keyboard' built in an application on Android

查看:24
本文介绍了Android 应用程序中内置的自定义“键盘"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我一直在寻找为我的应用程序创建自定义键盘.起初,我开始查看 SDK 示例中的 SoftKeyboard,但阅读 Android Developer Group 使我找到了这篇文章:

<块引用>

这真的不是怎么输入的方法框架应该可以工作.IME 应该是通用输入设施,不是为了特定的应用.如果你需要一些特定于应用程序的输入,您应该构建它进入你的用户界面而不是推送输出到通用 IME.

如何在 UI 中构建特定于应用的输入?我的意思是,有没有办法扩展 Keyboard 应用程序或其他东西并仅在我的应用程序中使用它?

键盘所需的功能:

  • Shift 键显示一些其他键
  • 特殊键,如平方根或 PI

PS:一个丑陋的解决方案可能是制作一个 ImageButton 表格,但我想让一些东西变得干净.

解决方案

我不确定是否有直接的解决方案(在某种程度上,甚至可以理解原始问题背后的真正原因).

正如原始问题中引用的那样:

<块引用>

如果您需要一些特定于应用程序的输入,您应该将其构建到您的 UI 中而不是将其推送到通用 IME.

这意味着不是您应该在您的应用中尝试通过扩展或修改手机上的软键盘来构建此类输入功能.有许多不同的软键盘(基本上,软键盘只是另一个应用程序),因为大多数手机制造商都创建了自己的版本,人们下载了第三方键盘(例如 Swype 或 SwiftKey 等).),而且我无法想象有一种方法可以让您入侵"这些按钮以添加一些按钮或您想要的任何东西(这也可能是一个主要的安全漏洞,这可能是不可能的另一个原因).

以上引述所暗示的是,您必须创建一些其他形式的输入除了键盘.一个这样的例子,如果我可以补充的话,一个很好的例子是 .每个按钮都处理 onClick 事件,这意味着执行某种操作(更改其他按钮上的标签、显示菜单、在上标签中显示一些文本或其他任何内容),这可能就是它的主要内容.当然,手机的软键盘永远不会显示(因为你不需要一个带有所有这些按钮的键盘(而且没有任何输入字段可以写任何东西)).

这一切都归结为已经提到的引用:如果您需要一些特定于应用的输入,您应该将其构建到您的 UI 中.或者换句话说:创建按钮(如果不需要就不要显示软键盘)并在您点击它们时进行操作.

<小时>

并且只是提到它:如果您确实想创建自己的 IME(我强烈认为这里不是这种情况),您应该看看在以下资源:

I've been looking to create a custom keyboard for my application. At first, I started to look at the SoftKeyboard for the SDK examples, but reading the Android Developer Group led me to this post:

This is really not how the input method framework is supposed to work. An IME should be a generic input facility, not for a particular application. If you need some app-specific input, you should build it into your UI rather than pushing it out to a generic IME.

How do I build an app-specific input within the UI? I mean, is there a way to extend the Keyboard app or something and use it only in my application?

Features needed for the keyboard:

  • Shift key to display some other keys
  • Special keys like square root or PI
  • etc.

PS: an ugly solution could be to make a table of ImageButton for example, but I wanted to make something clean.

解决方案

I'm not really sure if there's a straight-forward solution to this (to that extent that it is even possible to understand the real reason behind the original question).

As is quoted in the original question:

If you need some app-specific input, you should build it into your UI rather than pushing it out to a generic IME.

What is meant by that, is not that you within your app should try to build in such input features by extending or modifying the soft keyboard on the phone. There are so many different soft keyboards (and basically, the soft keyboard is just another app), since most phone manufacturers create their own version, and people download 3rd party keyboards (such as Swype or SwiftKey etc.), and I can't picture there being a way for you to "hack" into those to add a few buttons or whatever it is you want (which could also be a major security hole, another reason why it probably isn't possible).

What instead the above quote suggests, is that you have to create some other form of input besides the keyboard. One such example, and a very good one if I might add, is how the RealCalc Scientific Calculator looks:

Now this isn't open source, so I can only guess how the code looks like (but it shouldn't be too hard a guess either): in its simplest form, this is just a grid with lots of buttons. Each button handles the onClick event, which would mean performing some kind of action (changing the label on some other buttons, showing a menu, displaying some text in the upper label or whatever), and that's probably pretty much what's to it. And of course, the phone's soft keyboard is never displayed (since you don't need a keyboard with all those buttons (and also there aren't any input fields to write anything in)).

It all boils down to the already mentioned quote: If you need some app-specific input, you should build it into your UI. Or in other words: create buttons (and don't display the soft keyboard if you don't need it) and make things happen when you click them.


And just to have mentioned it: if you do want to create your own IME (which I strongly believe is not the case here), you should have a look at the following resources:

这篇关于Android 应用程序中内置的自定义“键盘"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆