91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

帶刪除按鈕的EditText

發布時間:2020-07-21 16:35:02 來源:網絡 閱讀:1332 作者:一劍圍城 欄目:移動開發

在使用輸入框的時候,常常需要在輸入框后帶有一鍵清除輸入內容的按鈕。采用自定義View的方式是復用性較高的方法。另一方面也可以采用控件“控件+監聽”的較為簡單的方法來實現。

布局文件:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:text="賬號:"
        android:textColor="#000000"
        android:gravity="center"
        android:textSize="16sp"/>
    <EditText
        android:id="@+id/etUser"
        tools:text="test3"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:background="@null"
        android:maxLength="16"
        android:layout_weight="1"/>
    <TextView
        android:id="@+id/closeUser"
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:gravity="center"
        android:background="@drawable/icon_delete"
        android:textColor="@color/gray"/>
</LinearLayout>

主要代碼:

        tvCloseUser = (TextView) findViewById(R.id.closeUser);//清除按鈕,使用TextView
        tvCloseUser.setVisibility(View.INVISIBLE);
        
        mEtUserName = (EditText) findViewById(R.id.etUser);//文本框
        
        //監聽文本變化
        mEtUserName.addTextChangedListener(new TextWatcher() {
            @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {
                if (s.length() > 0){
                    tvCloseUser.setVisibility(View.VISIBLE);
                }else{
                    tvCloseUser.setVisibility(View.GONE);
                }
            }
        });
        //點擊清除文本
        tvCloseUser.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                mEtUserName.setText("");
            }
        });
        //監聽焦點變化,沒有焦點則清除按鈕不可見
        mEtUserName.setOnFocusChangeListener(new View.OnFocusChangeListener() {
            @Override
            public void onFocusChange(View v, boolean hasFocus) {
                if (hasFocus && mEtUserName.getText().length() > 0){
                    tvCloseUser.setVisibility(View.VISIBLE);
                }else {
                    tvCloseUser.setVisibility(View.GONE);
                }
            }
        });
向AI問一下細節

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

AI

闵行区| 区。| 肃宁县| 阳泉市| 阳城县| 永吉县| 班玛县| 安庆市| 开远市| 定远县| 桂平市| 紫阳县| 外汇| 方城县| 敖汉旗| 鄱阳县| 青海省| 彭水| 凤阳县| 青川县| 安吉县| 彭水| 池州市| 定陶县| 崇信县| 清徐县| 新巴尔虎左旗| 千阳县| 瓮安县| 衡阳市| 含山县| 太保市| 博罗县| 海伦市| 昭觉县| 金寨县| 西和县| 寿宁县| 夏河县| 梅河口市| 青铜峡市|