版权声明:本文为博主原创文章,未经博主同意不得转载。

https://blog.csdn.net/t80t90s/article/details/25048917

SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。 复于: 2013-09-06 09:06:25 package com.gainko.helper;

import android.text.method.ReplacementTransformationMethod;

/**
 * @author Ivan
 * 
 */
public class AllCapTransformationMethod extends ReplacementTransformationMethod {

@Override
protected char[] getOriginal() {
char[] aa = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z' };
return aa;
}

@Override
protected char[] getReplacement() {
char[] cc = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z' };
return cc;
}

}

///
editext.setTransformationMethod(new AllCapTransformationMethod ());
扫码关注我们
微信号:SRE实战
拒绝背锅 运筹帷幄