您好,登錄后才能下訂單哦!
// 獲取EditText控件
EditText editText = findViewById(R.id.editText);
// 設置InputType為日期格式
editText.setInputType(InputType.TYPE_CLASS_DATETIME);
editText.setKeyListener(DigitsKeyListener.getInstance("0123456789/"));
// 設置文本輸入監聽
editText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// 在文本改變之前執行的操作
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// 在文本改變時執行的操作
}
@Override
public void afterTextChanged(Editable s) {
// 在文本改變之后執行的操作
String input = editText.getText().toString();
// 自動格式化日期,例如將輸入的數字轉換成日期格式
if (input.length() == 8) {
String formattedDate = input.substring(0, 2) + "/" + input.substring(2, 4) + "/" + input.substring(4);
editText.setText(formattedDate);
editText.setSelection(formattedDate.length());
}
}
});
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。