Android开发EditText小技巧

一:自带清除功能的 EditText

1 .效果图


image

2 代码

  /**
 * Created on 2019/6/5 10:12 AM
 *
 * @author GYQ
 */
  @SuppressLint("AppCompatCustomView")
  public class ClearEditText extends EditText implements View.OnFocusChangeListener, TextWatcher {
private Drawable mClearDrawable;
private boolean hasFocus;

public ClearEditText(Context context) {
    this(context, null);
}

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

public ClearEditText(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    init();
}

private void init() {
    mClearDrawable = getCompoundDrawables()[2];
    if (mClearDrawable == null) {
        mClearDrawable = ResourcesCompat.getDrawable(getResources(), R.drawable.ic_clear,null);
    }
    mClearDrawable.setBounds(0, 0, mClearDrawable.getIntrinsicWidth(), mClearDrawable.getIntrinsicHeight());
    setOnFocusChangeListener(this);
    addTextChangedListener(this);
    // 默认隐藏图标
    setDrawableVisible(false);
}

/**
 * 我们无法直接给EditText设置点击事件,只能通过按下的位置来模拟clear点击事件
 * 当我们按下的位置在图标包括图标到控件右边的间距范围内均算有效
 */
@Override
public boolean onTouchEvent(MotionEvent event) {
    if (event.getAction() == MotionEvent.ACTION_UP) {
        if (getCompoundDrawables()[2] != null) {
            int start = getWidth() - getTotalPaddingRight() + getPaddingRight();
            int end = getWidth();
            boolean available = (event.getX() > start) && (event.getX() < end);
            if (available) {
                this.setText("");
            }
        }
    }
    return super.onTouchEvent(event);
}

@Override
public void onFocusChange(View v, boolean hasFocus) {
    this.hasFocus = hasFocus;
    if (hasFocus && getText().length() > 0) {
        setDrawableVisible(true);
    } else {
        setDrawableVisible(false);
    }
}

@Override
public void onTextChanged(CharSequence s, int start, int count, int after) {
    if (hasFocus) {
        setDrawableVisible(s.length() > 0);
    }
}

@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}

@Override
public void afterTextChanged(Editable s) {
}

protected void setDrawableVisible(boolean visible) {
    Drawable right = visible ? mClearDrawable : null;
    setCompoundDrawables(getCompoundDrawables()[0], getCompoundDrawables()[1], right, getCompoundDrawables()[3]);
}

}

3 简单使用

   <com.scarf.test.ClearEditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

二:自带下拉功能的EditText

1 效果图


image

2 代码

  /**
   * Created on 2019/6/5 10:31 AM
   *
    * @author Scarf Gong
     */
      @SuppressLint("AppCompatCustomView")
      public class DropEditText extends EditText implements PopupWindow.OnDismissListener, AdapterView.OnItemClickListener {
private Drawable mDrawable;
private PopupWindow mPopupWindow;
private ListView mPopListView;
private int mDropDrawableResId;
private int mRiseDrawableResID;

public DropEditText(Context context) {
    this(context, null);
}

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

public DropEditText(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    init(context);
}

private void init(Context context) {
    mPopListView = new ListView(context);
    mDropDrawableResId = R.drawable.ic_drop_down;
    mRiseDrawableResID = R.drawable.ic_drop_up;
    showDropDrawable(); // 默认显示下拉图标
    mPopListView.setOnItemClickListener(this);
}

/**
 * 我们无法直接给EditText设置点击事件,只能通过按下的位置来模拟点击事件
 * 当我们按下的位置在图标包括图标到控件右边的间距范围内均算有效
 */
@Override
public boolean onTouchEvent(MotionEvent event) {
    if (event.getAction() == MotionEvent.ACTION_UP) {
        if (getCompoundDrawables()[2] != null) {
            int start = getWidth() - getTotalPaddingRight() + getPaddingRight();
            int end = getWidth();
            boolean available = (event.getX() > start) && (event.getX() < end);
            if (available) {
                closeSoftInput();
                showPopWindow();
                return true;
            }
        }
    }
    return super.onTouchEvent(event);
}

@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
    super.onLayout(changed, left, top, right, bottom);
    if (changed) {
        mPopupWindow = new PopupWindow(mPopListView, getWidth(), LinearLayout.LayoutParams.WRAP_CONTENT);
        mPopupWindow.setBackgroundDrawable(new ColorDrawable(Color.WHITE));
        mPopupWindow.setFocusable(true);
        mPopupWindow.setOnDismissListener(this);
    }
}

private void showPopWindow() {
    mPopupWindow.showAsDropDown(this, 0, 5);
    showRiseDrawable();
}

private void showDropDrawable() {
    mDrawable = getResources().getDrawable(mDropDrawableResId);
    mDrawable.setBounds(0, 0, mDrawable.getIntrinsicWidth(), mDrawable.getIntrinsicHeight());
    setCompoundDrawables(getCompoundDrawables()[0], getCompoundDrawables()[1], mDrawable, getCompoundDrawables()[3]);
}

private void showRiseDrawable() {
    mDrawable = getResources().getDrawable(mRiseDrawableResID);
    mDrawable.setBounds(0, 0, mDrawable.getIntrinsicWidth(), mDrawable.getIntrinsicHeight());
    setCompoundDrawables(getCompoundDrawables()[0], getCompoundDrawables()[1], mDrawable, getCompoundDrawables()[3]);
}

public void setAdapter(BaseAdapter adapter) {
    mPopListView.setAdapter(adapter);
}

private void closeSoftInput() {
    InputMethodManager imm = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(this.getWindowToken(), 0);
}

@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
    this.setText(mPopListView.getAdapter().getItem(position).toString());
    mPopupWindow.dismiss();
}

@Override
public void onDismiss() {
    showDropDrawable();
}

  }

3 简单使用

  private void init() {
    dropEditText = (DropEditText) findViewById(R.id.drop_edit_text);
    String[] strings = new String[10];
    for (int i = 0; i < 10; i++) {
        strings[i] = "美女" + i + "号";
    }
    adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, strings);
    dropEditText.setAdapter(adapter);
}

将软键盘回车换成搜索等按钮

添加 imeOptions 属性:

 <EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:imeOptions="actionSearch"
    android:singleLine="true"/>

注意: 这里一定还要设置 singLine=“true”,不然回车还是换行的功能。

常见的属性

actionNext下一步,通常用于跳转到下一个EditText
actionGo前往,通常用于打开链接
actionSend发送,通常用于发送信息
actionSearch搜索,通常用于搜索信息
actionDone确认,通常表示事情做完了

三:EditText 输入自动带空格的手机号码

在android开发过程中,经常会要求用户输入手机号,为了便于观看,我们都会以150 xxxx xxxx这种格式展示。

1.效果图

image

2.布局文件

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout       xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginEnd="14dp"
    android:layout_marginRight="14dp"
    android:text="手机号码:"
    android:textSize="16sp"
    app:layout_constraintBaseline_toBaselineOf="@+id/editText"
    app:layout_constraintEnd_toStartOf="@+id/editText"
    app:layout_constraintHorizontal_chainStyle="packed"
    app:layout_constraintStart_toStartOf="parent" />

<EditText
    android:id="@+id/editText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginEnd="25dp"
    android:layout_marginRight="25dp"
    android:layout_marginTop="81dp"
    android:ems="10"
    android:maxLength="13"
    android:inputType="phone"
    android:hint="@string/mine_phone"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toEndOf="@+id/textView2"
    app:layout_constraintTop_toTopOf="parent" />
    </android.support.constraint.ConstraintLayout>

3.代码

public class MainActivity extends AppCompatActivity {
private EditText mPhoneNum;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    initView();

    initData();

}
private void initView() {
    mPhoneNum = (EditText)findViewById(R.id.editText);
}
private void initData() {
    mPhoneNum.addTextChangedListener(new TextWatcher() {
        @Override
        public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {

        }

        @Override
        public void onTextChanged(CharSequence charSequence, int start, int before, int count) {
            if (charSequence == null || charSequence.length() == 0) {
                return;
            }
            StringBuilder stringBuilder = new StringBuilder();
            for (int i = 0;i<charSequence.length();i++) {
                if (i != 3 && i != 8 && charSequence.charAt(i) == ' ') {
                    continue;
                } else {
                    stringBuilder.append(charSequence.charAt(i));
                    if ((stringBuilder.length() == 4 || stringBuilder.length() == 9)
                            && stringBuilder.charAt(stringBuilder.length() - 1) != ' ') {
                        stringBuilder.insert(stringBuilder.length() - 1, ' ');
                    }
                }
            }
            if (!stringBuilder.toString().equals(charSequence.toString())) {
                int index = start + 1;
                if (stringBuilder.charAt(start) == ' ') {
                    if (before == 0) {
                        index++;
                    } else {
                        index--;
                    }
                } else {
                    if (before == 1) {
                        index--;
                    }
                }
                mPhoneNum.setText(stringBuilder.toString());
                mPhoneNum.setSelection(index);

            }
        }

        @Override
        public void afterTextChanged(Editable editable) {

        }
    });
}


}

四:EditText 自定义背景框、

1: xml 中使用EditText 控件

  <!-- 自定义EditText 背景 -->

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:layout_marginTop="10dp"
    android:background="@drawable/custom_edittext_background"
    android:gravity="center"
    android:hint="一、自定义EditText背景框"
    android:padding="8dp"
    android:textSize="16sp" />

2:自定义 EditText 背景框

<?xml version="1.0" encoding="utf-8"?>

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<!-- 圆角-->
<corners android:radius="5dp" />
<!--描边-->
<stroke
    android:width="1dp"
    android:color="@android:color/holo_blue_light" />

</shape>

3:实现效果

image

EditText自动检测输入内容

1:xml 中使用EditText 控件

<EditText
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:autoText="true"
    android:hint="二、自动检测输入更正属性 autoText"
    android:textColor="#FF6100" />

2:实现效果

image

五:Edittext 密文显示

1: xml 中使用EditText 控件

  <EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="三、以密文的形式显示密码"
    android:password="true" />

2:实现效果

image

六:EditText 限制只能输入特定字符

限定只能输入阿拉伯数字实现如下:

1:xml 中使用EditText 控件

  <!-- 设置允许输入的字符 -->

<EditText
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:digits="123456789.+-*/\n()"
    android:hint="四、设置限制允许输入阿拉伯数字" />

2:
image

实现效果

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,406评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,976评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,302评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,366评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,372评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,457评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,872评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,521评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,717评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,523评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,590评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,299评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,859评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,883评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,127评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,760评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,290评论 2 342

推荐阅读更多精彩内容