android EditText監聽和長度監測事件

來源:互聯網
上載者:User

標籤:

<?xml version="1.0" encoding="utf-8"?><!-- 定義基礎的LinearLayout布局 --><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:orientation="vertical" >    <!-- 定義EditText文本輸入框 -->    <EditText        android:id="@+id/Et"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:hint="請輸入使用者名稱:"/>    <!-- 定義Button按鈕螢幕地區 -->    <Button        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:onClick="myclick"        android:text="點擊我,檢測使用者名稱合法性!"/>    <!-- 定義TextView文字標籤 -->    <TextView        android:id="@+id/Tv"        android:layout_width="fill_parent"        android:layout_height="fill_parent"/></LinearLayout>
package com.example.yanlei.yl2;import android.app.AlertDialog;import android.content.DialogInterface;import android.content.DialogInterface.OnKeyListener;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.app.Activity;import android.os.Bundle;import android.text.Editable;import android.text.TextWatcher;import android.util.Log;import android.widget.TextView;import android.widget.EditText;import android.view.View;import android.widget.Toast;public class MainActivity extends AppCompatActivity {    //定義TextView對象    private TextView Tv;    //定義EditText對象    private EditText Et;    @Override    public void onCreate(Bundle savedInstanceState) {        //當建立此Activity的時候回調        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        findView();        Et.addTextChangedListener(new EditChangedListener());    }    private void findView() {        // 得到當前布局的控制項對象        Tv = (TextView) findViewById(R.id.Tv);        Et = (EditText) findViewById(R.id.Et);    }    //在xml中綁定的點擊調用函數    public void myclick(View v) {        //得到使用者輸入的使用者名稱,得到長度        int len = Et.getText().toString().length();        //根據輸入的使用者名稱的長度,做出對應的提示。        if (len > 5 && len < 9) {            Tv.setText("使用者名稱合法,長度為:" + len);        } else {            Tv.setText("使用者名稱長度非法,長度為:" + len);        }    }    class EditChangedListener implements TextWatcher {        private CharSequence temp="";//監聽前的文本        private int editStart;//游標開始位置        private int editEnd;//游標結束位置        private final int charMaxNum = 10;        boolean DEBUG = false;        String TAG = "測試:";        @Override        public void beforeTextChanged(CharSequence s, int start, int count, int after) {            if (DEBUG)                Log.i(TAG, "輸入文本之前的狀態");            temp = s;        }        @Override        public void onTextChanged(CharSequence s, int start, int before, int count) {            if (DEBUG)                Log.i(TAG, "輸入文字中的狀態,count是一次性輸入字元數");            Tv.setText("還能輸入" + (charMaxNum - s.length()) + "字元");        }        @Override        public void afterTextChanged(Editable s) {            if (DEBUG)                Log.i(TAG, "輸入文字後的狀態");            try {                if (temp.length() > charMaxNum) {                    Toast.makeText(getApplicationContext(), "你輸入的字數已經超過10了限制!", Toast.LENGTH_LONG).show();                }            } catch (Exception ex) {            }        }    }}

 

android EditText監聽和長度監測事件

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.