Android:我需要一个像 iPhone 那样的计算器类型软键盘中的幻灯片
我正在尝试在 Android 上复制我公司外部开发的 iPhone 应用程序。
我的需求很简单,但是在android下似乎很难实现。我有三个数字编辑文本输入。每个应该只采用十进制数值。所以数字 0-9 和“.”或者 ”,”。在 iPhone 上,这是通过计算器风格键盘中的滑动来实现的,其中一个按钮是“GO”按钮,按下该按钮会隐藏键盘,如果所有输入都有有效值,则会触发计算,并在屏幕上显示值。
我已经尝试过 Android 手机输入类型,这非常接近我想要的,但我不知道如何复制“开始”按钮。我在主界面本身上放置了一个计算按钮,但打开键盘后我无法再次使用键盘。
那么我可以
A. 以某种方式修改手机键盘的布局,将其中一个按钮更改为 GO(计算)并拦截按键或
B. 我是否必须创建自己的键盘,在这种情况下我该如何将其滑入和滑出 超出当前视图的顶部?
谢谢大家
I'm attempting to replicate on android an iphone app my company had developed externally.
My need is simple but it seems hard to achieve under android. I have three numeric edittext inputs. Each should take only decimal numeric values. So numbers 0-9 and "." or ",". On the iphone this was achieved by a slide in calculator style keypad with one of the buttons a "GO" button that when pressed hides the keypad and, if all the inputs have valid values triggers a calculation that displays values on the screen.
I've tried the android phone input type and this is very close to what I want but I have no idea how to replicate the go button. I have put a calculate button on the main interface itself but I can't get the keyboard to go again once it is opened.
So can I either
A. Modify the layout of the phone keypad in some way to change one of the buttons to be
GO (Calculate) and intercept the keypress or
B. Do I have to create my own keypad in which case how do I go about sliding it in and out
over the top of the current view?
thanks guys
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅
android:imeActionId
和android:imeActionLabel
为您的 GO 按钮。See
android:imeActionId
andandroid:imeActionLabel
for your GO button.