EditText 는 입력 숫자 를 제한 하고 소수점 뒤의 1 자리 까지 정확하게 설정 하 는 방법 입 니 다.

EditText 의 레이아웃 파일 에 설정:

android:inputType="numberDecimal"

코드 에서:

/**         */
private static final int DECIMAL_DIGITS = 1;


InputFilter lengthfilter = new InputFilter() {
  public CharSequence filter(CharSequence source, int start, int end,
                Spanned dest, int dstart, int dend) {
    //        ,    
    if ("".equals(source.toString())) {
      return null;
    }
    String dValue = dest.toString();
    String[] splitArray = dValue.split("//.");
    if (splitArray.length > 1) {
      String dotValue = splitArray[1];
      int diff = dotValue.length() + 1 - DECIMAL_DIGITS;
      if (diff > 0) {
        return source.subSequence(start, end - diff);
      }
    }
    return null;
  }
};
et_content.setFilters(new InputFilter[] { lengthfilter });
이상 의 이 EditText 는 입력 숫자 를 제한 합 니 다.소수점 뒤의 1 자리 까지 정확하게 설정 하 는 방법 은 바로 편집장 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.참고 하 시기 바 랍 니 다.여러분 들 도 많이 응원 해 주시 기 바 랍 니 다.

좋은 웹페이지 즐겨찾기