Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android 中自定義控件之判斷還剩多少可輸入字符的EditText

Android 中自定義控件之判斷還剩多少可輸入字符的EditText

編輯:關於Android編程

 

最近做的項目有個需求就是判斷一下還 剩多少字符可輸入,也就是對EditText 的文本變化做監聽 ,功能實現了,但是感覺使用組合方式,每次都要編寫,還不如寫一個自定義控件來備用。在查看本文時,建議先行參考本人轉載的一篇文章:http://blog.csdn.net/android_jiangjun/article/details/39580253

下面進入本文的正題:

首先大家先看一下效果圖吧:

\

\

本文自定義的控件采用的是組合控件的方式來自定義控件,自定義控件的布局如下


    



然後相應的自定義HintEdit類代碼如下:

 

 

 

 

package com.gc.testcustomedittext;

import android.annotation.SuppressLint;
import android.content.Context;
import android.content.res.TypedArray;
import android.text.Editable;
import android.text.InputFilter;
import android.text.TextWatcher;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.widget.EditText;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.TextView;
/**
 * 
 * @author Android將軍
 *
 */
public class HintEditText extends RelativeLayout implements TextWatcher{
	

	private EditText mEditText;
	private TextView mTextView;
	private int maxLength=0;
	private RelativeLayout mRelativeLayout;
	@SuppressLint(NewApi) public HintEditText(Context context, AttributeSet attrs, int defStyle) {
		super(context, attrs, defStyle);
		
	
		
	}
	public HintEditText(Context context) {
		super(context);
		
		
	}
	public HintEditText(Context context, AttributeSet attrs) {
		super(context, attrs);
		TypedArray mTypedArray=context.obtainStyledAttributes(attrs, R.styleable.HintEditText);
		maxLength=mTypedArray.getInt(R.styleable.HintEditText_maxLength, 0);
		mRelativeLayout=(RelativeLayout)LayoutInflater.from(context).inflate(R.layout.custom_edittext, this,true);
		mEditText=(EditText)mRelativeLayout.findViewById(R.id.edit);
		mTextView=(TextView)mRelativeLayout.findViewById(R.id.text);
		mTextView.setHint(還可輸入+maxLength+字);
		//限定最多可輸入多少字符
		mEditText.setFilters(new InputFilter[]{new InputFilter.LengthFilter(maxLength)}); 
		mEditText.addTextChangedListener(this);
		
	}
	public void initUI(Context context)
	{
		
		RelativeLayout mRelativeLayout=(RelativeLayout)LayoutInflater.from(context).inflate(R.layout.custom_edittext, this,true);
		
		mEditText=(EditText)mRelativeLayout.findViewById(R.id.edit);
		
		 mTextView=(TextView)mRelativeLayout.findViewById(R.id.text);
		
		
	}
	
	@Override
	public void beforeTextChanged(CharSequence s, int start, int count,
			int after) {
		// TODO Auto-generated method stub
		
	}
	@Override
	public void onTextChanged(CharSequence s, int start, int before, int count) {
		// TODO Auto-generated method stub
		mTextView.setHint(還可輸入+(maxLength-s.toString().length())+字);
	
	}
	@Override
	public void afterTextChanged(Editable s) {
		// TODO Auto-generated method stub
		
	}
	

}

attrs.xml文件的代碼如下:

 

 

 

 



    
        
   
 

主布局的文件代碼如下

 

 

 

 



    

    

    


MainActivity的代碼如下:

 

 

 

 

package com.gc.testcustomedittext;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
/**
 * 
 * @author Android將軍
 *
 */
public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
    }
}

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved