标签: android credit-card
我有一个通用的信用卡读卡器,被检测为USB键盘。我通过简单地使用文本视图捕获文本来测试它。
我想知道是否有最好的实现它,所以你不需要一个活动的文本字段(例如通过控制台输入流缓冲区捕获通用键盘事件,就像我在读卡器的桌面版本中使用的那样) :
Console console = System.console(); String inputData = new String (console.readPassword());
答案 0 :(得分:1)
View类有一个名为setOnKeyListener的方法,对您有用。
View
setOnKeyListener