English 中文(简体)
Android - 带有小数分隔符的数字键盘
原标题:Android - numeric keyboard with decimal separator

我有一个编辑文本, 它以程序方式创建( 而不是在 xml 中), 我想在用户按下它时启动一个数字键盘 。 问题在于我希望这个键盘也包含小数分隔符 (.) 。

我尝试过很多事情,但似乎没什么工作

最后的编辑文本输入 = 新的编辑文本( 此);

input.setKeyListener(new DigitsKeyListener()); // this gives numeric without decimal separator input.setInputType(InputType.TYPE_CLASS_NUMBER); // this gives numeric without decimal separator input.setInputType(InputType.TYPE_CLASS_PHONE);//this gives phone keyboard with all the digits and decimal separator in the second page. It is not exactly what I want

我知道有办法执行自定义键盘:

http://android- Developers.blogspot.com/2009/04/recreate-intopt-method.html>http://android-developers.com/2009/04/createing-intput-method.html

http://developer.android.com/resources/samples/SoftKeyboard/index.html

但它似乎相当痛苦,我首先寻找一个更快的替代方案。

All I want is one of the following: 1. Launch numeric keyboard that contains decimal separator 2. Launch standard keyboard, but set in the numeric "page" Is something of the above possible? Thank you in advance!

最佳回答

您所描述的内容没有键盘, 至少没有键盘可以作为普通输入类型。 即使您做了一个自定义键盘, 这也不会是一个很好的处理方法, 因为用户每次想要使用您的应用程序, 都不得不交换键盘 。

此外,您无法明确打开“数字页上”的文本键盘,因为并非所有的Android键盘都有一个单独的数字页。每个设备都高度定制。

我的第一个建议是使用普通的文本键盘,让用户决定哪个键盘最适合。

我的第二个建议是在屏幕上建一个数字板, 使用按钮/视图来显示您需要的具体键。

问题回答

我用这个代码向键盘展示了这个代码:

        // Set an EditText view to get user input
    final EditText input = new EditText(this);
    alert.setView(input);
    input.setInputType((InputType.TYPE_CLASS_NUMBER + InputType.TYPE_NUMBER_FLAG_DECIMAL));

在这里,它去。

if (editText.getText().matches("^[0-9]+(.[0-9]{1,2})?$")) {
            System.out.println("It is decimal number");
        }
new DigitsKeyListener(false, true) 

将给予十进制输入键盘的十进制键盘





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签