菜鸟的安卓实习之路----editText 只允许输入数字,并调出数字键盘

          xml:          android:digits="1234567890."
                    android:numeric="integer"


     java:       love_bind_addLover_loverNumber = (EditText) findViewById(R.id.love_bind_addLover_loverNumber);

  love_bind_addLover_loverNumber.setInputType(InputType.TYPE_CLASS_NUMBER);;

  love_bind_addLover_loverNumber.addTextChangedListener(watcher) ;


顺序没搞对 ,导致一直崩溃 ,成功调出数字键盘 

你可能感兴趣的:(安卓)