您好,登錄后才能下訂單哦!
要防止EditText中輸入重復內容,可以通過編寫一個自定義EditText類并擴展原生的EditText。在這個類中,你需要重寫onTextChanged()
方法來監聽文本變化,然后實現邏輯來防止重復輸入。
以下是一個示例代碼:
import android.content.Context;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.AttributeSet;
import androidx.appcompat.widget.AppCompatEditText;
public class NonRepeatEditText extends AppCompatEditText {
public NonRepeatEditText(Context context) {
super(context);
init();
}
public NonRepeatEditText(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public NonRepeatEditText(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
init();
}
private void init() {
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) {
if (count > 1) { // 當輸入內容長度大于1時,刪除重復輸入的部分
String newText = s.toString().substring(start, start + count);
String prevText = s.toString().substring(start - before, start);
if (newText.equals(prevText)) {
Editable editable = getText();
editable.delete(start, start + count);
}
}
}
@Override
public void afterTextChanged(Editable s) {
}
});
}
}
在布局文件中使用這個自定義的NonRepeatEditText:
<your.package.name.NonRepeatEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/non_repeat_edit_text"/>
這樣,當用戶嘗試在EditText中輸入重復內容時,重復的部分將被自動刪除。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。