All Projects → qinci → Androidedit

qinci / Androidedit

Licence: apache-2.0
Android EditText的撤销和恢复(反撤销)

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Androidedit

AutoFormatInputWatcher
This repository contains input watcher for auto formatting digits in edit text
Stars: ✭ 15 (-96.66%)
Mutual labels:  edittext
CustomFontView
Custom View classes for TextView, EditText & Buttons - to set custom fonts
Stars: ✭ 26 (-94.21%)
Mutual labels:  edittext
Editdrawabletext
EditDrawableText - An EditText which makes your Drawable Clickable
Stars: ✭ 288 (-35.86%)
Mutual labels:  edittext
android-prefix-suffix-edit-text
EditText with support for non editable prefix and suffix.
Stars: ✭ 36 (-91.98%)
Mutual labels:  edittext
LG LinesEditView
Android 多行文本输入框 字数统计 限制字数
Stars: ✭ 31 (-93.1%)
Mutual labels:  edittext
CustomEditText
Simple Custom EditText for Android like Instagram
Stars: ✭ 23 (-94.88%)
Mutual labels:  edittext
KodeEditor
A simple code editor with syntax highlighting and pinch to zoom
Stars: ✭ 60 (-86.64%)
Mutual labels:  edittext
Pinview
A PIN view library for Android. Use to enter PIN/OTP/password etc.
Stars: ✭ 387 (-13.81%)
Mutual labels:  edittext
textmatcher
A simple text watcher that matches specific targets like mention or hashtag in a string by defining rules
Stars: ✭ 67 (-85.08%)
Mutual labels:  edittext
Bankcardformat
💳 自动格式化银行卡号的EditText,卡号格式化、归属银行及卡别判断
Stars: ✭ 273 (-39.2%)
Mutual labels:  edittext
fastedit
安卓端高性能输入框。
Stars: ✭ 38 (-91.54%)
Mutual labels:  edittext
TagEditText
A simple Android Tag EditText
Stars: ✭ 14 (-96.88%)
Mutual labels:  edittext
Text-Length-Bar
No description or website provided.
Stars: ✭ 31 (-93.1%)
Mutual labels:  edittext
BlockEditText
Block EditText is a library provide an input view present in multiple block style that common use in TAC or credit card field.
Stars: ✭ 113 (-74.83%)
Mutual labels:  edittext
Spedittool
An efficient and scalable library for inputing and displaying gif or @mention on graph-text mixed TextView/EditText
Stars: ✭ 292 (-34.97%)
Mutual labels:  edittext
EasyMoney-Widgets
The widgets (EditText and TextView) for support of money requirements like currency, number formatting, comma formatting etc.
Stars: ✭ 91 (-79.73%)
Mutual labels:  edittext
RotatableAutofitEditText
Extended EditText which allows to move, rotate and resize text at the same time
Stars: ✭ 51 (-88.64%)
Mutual labels:  edittext
Edittext Mask
The custom masks for EditText. The solution for input phone numbers, SSN, and so on for Android
Stars: ✭ 413 (-8.02%)
Mutual labels:  edittext
Autocomplete
Simple yet powerful autocomplete behavior for EditTexts, to avoid working with MultiAutoCompleteTextView APIs.
Stars: ✭ 307 (-31.63%)
Mutual labels:  edittext
currency edittext
Simple currency formatter for Android EditText
Stars: ✭ 64 (-85.75%)
Mutual labels:  edittext

AndroidEdit

提取我正在做Markdown编辑器的一个功能

####EditText的撤销和恢复撤销操作 #####使用

  • 引入库
    • compile 'ren.qinc.edit:lib:0.0.5'
  • 初始化
    mEditText = ((EditText) findViewById(R.id.editText));
    //创建PerformEdit,一定要传入不为空的EditText
    mPerformEdit = new PerformEdit(mEditText);
    mPerformEdit.setDefaultText("这是初始值,不做撤销记录");
  • 撤销和恢复
	//撤销
	mPerformEdit.undo();
    //重做
    mPerformEdit.redo();
    //清除历史
    mPerformEdit.clearHistory();
  • 演示图

    Image

  • 最后欢迎您star、fork

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].