中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

EditText控件的文本輸入與自定義撤銷/重做

發布時間:2024-08-31 14:01:52 來源:億速云 閱讀:83 作者:小樊 欄目:移動開發

在Android中,EditText控件默認支持文本輸入

  1. 創建一個自定義EditText類,繼承自AppCompatEditText。
import android.content.Context;
import android.text.Editable;
import android.text.TextWatcher;
import android.util.AttributeSet;

import androidx.appcompat.widget.AppCompatEditText;

import java.util.Stack;

public class CustomEditText extends AppCompatEditText {
    private Stack<String> undoStack = new Stack<>();
    private Stack<String> redoStack = new Stack<>();

    public CustomEditText(Context context) {
        super(context);
        init();
    }

    public CustomEditText(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    public CustomEditText(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) {
            }

            @Override
            public void afterTextChanged(Editable s) {
                if (undoStack.isEmpty() || !undoStack.peek().equals(s.toString())) {
                    undoStack.push(s.toString());
                    redoStack.clear();
                }
            }
        });
    }

    public void undo() {
        if (!undoStack.isEmpty()) {
            String text = undoStack.pop();
            redoStack.push(getText().toString());
            setText(text);
            setSelection(text.length());
        }
    }

    public void redo() {
        if (!redoStack.isEmpty()) {
            String text = redoStack.pop();
            undoStack.push(getText().toString());
            setText(text);
            setSelection(text.length());
        }
    }
}
  1. 在布局文件中使用自定義EditText。
<your.package.name.CustomEditText
    android:id="@+id/custom_edit_text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>
  1. 在Activity或Fragment中處理撤銷和重做操作。
CustomEditText customEditText = findViewById(R.id.custom_edit_text);

// 撤銷
customEditText.undo();

// 重做
customEditText.redo();

現在你可以在自定義EditText中輸入文本,并通過調用undo()redo()方法實現撤銷和重做功能。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

双桥区| 河津市| 乌拉特前旗| 礼泉县| 连江县| 延津县| 安岳县| 赤水市| 江川县| 工布江达县| 云和县| 惠安县| 化州市| 湾仔区| 榆中县| 静乐县| 威信县| 永春县| 海晏县| 西和县| 商河县| 香河县| 花垣县| 和龙市| 合阳县| 通榆县| 岳阳县| 鹿泉市| 萍乡市| 炉霍县| 汉阴县| 四子王旗| 武川县| 来凤县| 通海县| 和田县| 历史| 延边| 芮城县| 栾城县| 瑞丽市|