i want to allow only numbers and period(.) in a android edit text. How to do this .. can any body help?
You need to make your EditText as numberSigned and numberDecimal. Add this line in your xml file -
android.inputType="numberSigned|numberDecimal"
Done :-)