时间:2021-05-19
本文实例为大家分享了Android实现验证码登录的具体代码,供大家参考,具体内容如下
1.导包
1.1在项目的gradle中导入
maven { url "https://patActivity implements View.OnClickListener { TextView phoneNumberStr; TextView codeCountDown; TextView reGetCode; private int recLen = 10; Timer timer = new Timer(); @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.phone_code); init();//初始化组件 String phone = new String("15968373790"); if (phone.length() < 11) phoneNumberStr.setText("验证码已发送至"+phone); else phoneNumberStr.setText("验证码已发送至"+phone.substring(0,3)+"****"+phone.substring(7)); timer.schedule(task, 1000, 1000); // 启动一个1000毫秒(1秒)的定时任务 } TimerTask task = new TimerTask() { @Override public void run() { runOnUiThread(new Runnable() { @Override public void run() { codeCountDown.setVisibility(View.VISIBLE); recLen--; codeCountDown.setText(recLen+"秒后重新获取验证码");//动态调整秒数下降 if(recLen <= 0){ timer.cancel(); codeCountDown.setVisibility(View.GONE); reGetCode.setText("重新获得验证码");//倒计时结束,修改为重新获得验证码 reGetCode.setVisibility(View.VISIBLE);//修改控件的可见性 reGetCode.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { reGetCode.setVisibility(View.GONE); recLen = 10; codeCountDown.setVisibility(View.VISIBLE); codeCountDown.setText(recLen+"秒后重新获取验证码"); timer = new Timer(); //task一般情况下使用过一次后无法再使用,但可以借助反射使得task重新工作,修改state属性即可,state为1时表示已经使用过无法再次使用,为0表示可以使用 Field field; try { field = TimerTask.class.getDeclaredField("state"); field.setAccessible(true); field.set(task, 0); } catch (NoSuchFieldException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); } timer.schedule(task, 1000, 1000); } }); } } }); } }; private void init() { phoneNumberStr = findViewById(R.id.phone_number_str); codeCountDown = findViewById(R.id.re_get_code); reGetCode = findViewById(R.id.re_get_code); reGetCode.setOnClickListener(this); reGetCode.setVisibility(View.GONE); } @Override public void onClick(View v) { Intent intent;//设置单击事件使得倒计时可以继续 switch (v.getId()){ case R.id.get_code: reGetCode.setVisibility(View.GONE); timer.schedule(task, 1000, 1000); // timeTask break; } }}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
登录界面SIdentify创建验证码组件,实现绘画出图片验证码exportdefault{name:'SIdentify',props:{identifyCod
很多网站为了避免被恶意访问,需要设置验证码登录,避免非人类的访问,Python爬虫实现验证码登录的原理则是先到登录页面将生成的验证码保存下来,然后人为输入后,包
这里实现我使用到了struts2模拟一个登录功能来验证java实现的验证码功能。Java实现验证码的步骤:1、创建RandomImageGenerator.ja
废话不多说,实现js登录验证码的功能需要下面两步,具体实现过程如下所示:1.jsvarcode="";//在全局定义验证码functioncreateCode(
验证码老是错误的原因如下: 1、页面上的刷新问题,每刷新次页面登录的验证码都会跟着变换,如果提示验证码错了系统便会更换验证码,这是可能页面还是先前验证码,即是