本文介绍了配置android EditText以允许小数和负数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个要显示数字键盘的Android EditText
.
I have an Android EditText
that I want to have the number keyboard come up.
如果将android:inputType设置为numberSigned,则可以获得数字键盘和键入否定字的功能.但是,这不会让我使用小数.如果使用numberDecimal inputType,则可以使用小数,但不能使用负数.
If I set the android:inputType to numberSigned, I get the number keyboard and the ability to type in negatives. However this won't let me use decimals. If I use the numberDecimal inputType I can use decimals but not negatives.
您如何获得能够输入小数和负数的数字键盘?
How do you get the number keyboard with the ability to type in decimals and negatives?
推荐答案
您只是在EditText中缺少此信息,
You are just missing this in your EditText,
android:inputType="numberDecimal|numberSigned"
这篇关于配置android EditText以允许小数和负数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!