基本上我需要这里记录的功能:http://developer.android.com/training/keyboard-input/style.html
我需要为QLineEdit
指定输入类型,具体来说我需要将其设置为数字键盘输入。
我在Qt文档中找不到任何内容。
答案 0 :(得分:2)
使用QLineEdit::setInputMethodHints
并尝试Qt::ImhPreferNumbers
,例如Qt::ImhDigitsOnly
,Qt::ImhFormattedNumbersOnly
或ImhDialableCharactersOnly
或public class AmazingButton extends VButton implements FocusListener
。