有时候,我们用EditText的时候,会要求输入小数点后几位,遇到过几次这样的需求,这次把它给记下来,方便以后使用 /** * 小数位数 */ public class PointLengthFilter implements InputFilter{ public PointLengthFilter(int pointLength){ mPointLength = pointLength; } public void setPointLength(int pointLength){ mPoin…