3

如果输入了错误的密码,我正在尝试使编辑文本框振动并立即更改颜色

final Drawable oldBackground = findViewById(R.id.email).getBackground();
TimerTask timerTask = new TimerTask() {
    @Override
    public void run() {
        MainActivty.this.findViewById(R.id.password).setBackground(oldBackground);
        MainActivty.this.findViewById(R.id.email).setBackground(oldBackground);
    }
};


Toast.makeText(MainActivty.this , valArray.get(0).toString(), Toast.LENGTH_SHORT).show();
findViewById(R.id.password).setBackgroundColor(Color.RED);
findViewById(R.id.email).setBackgroundColor(Color.RED);
Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE);
v.vibrate(500);Timer timer = new Timer();
timer.schedule(timerTask, 1000);
4

2 回答 2

7

定时器任务在不同的线程上运行。Ui 应该在 ui 线程上更新。

使用runOnUiThread或使用Handler.

          runOnUiThread(new Runnable(){

              @Override
              public void run(){
               // update ui here  
              }
           });

处理程序

Handler m_handler;
Runnable m_handlerTask ;  
m_handler = new Handler();   
m_handlerTask = new Runnable()
{
  @Override 
  public void run() { 

    // do something  
    m_handler.postDelayed(m_handlerTask, 1000);    

  }
  };
 m_handlerTask.run();

您还可以使用倒数计时器

以分钟和秒为单位的倒计时

于 2013-08-31T13:58:25.337 回答
4

您必须通过runOnUiThread方法使用Timer ,如下所示:

final TextView lblSSID = (TextView)findViewById(R.id.lblWifiSSID);
    new Timer().scheduleAtFixedRate(new TimerTask() {
        @Override
        public void run() {
            runOnUiThread(new TimerTask() {
                @Override
                public void run() {
                    lblSSID.setText(networkConnection.getWifiName());
                }
            });
        }
    }, 0, 5000);
于 2017-09-10T19:39:55.973 回答