我有一个javafx应用程序要部署在android中,我有一个文本字段,但我没有显示默认键盘(字母,数字,符号),我只想显示数字小键盘。怎么做?
答案 0 :(得分:0)
如果您有TextField
,可以致电:
text.getProperties().put("vkType", "numeric");
请注意,您需要使用-Dcom.sun.javafx.isEmbedded=true -Dcom.sun.javafx.virtualKeyboard=javafx
才能使其正常运行。