如何实现onClick的延迟?

时间:2011-11-09 16:36:14

标签: android

我在桌面行上有一个onclick,我想在显示下一个屏幕之前将行的颜色改变一秒钟。这可能吗?这是我目前的代码。

public void onClick(View v) {
String sdet_id;
int det_id;
v.setBackgroundColor(Color.GRAY);
det_id = v.getId();
sdet_id = String.valueOf(det_id);
Intent i = new Intent();
i.setClassName("demo.learningdroid.com", "demo.learningdroid.com.details");
i.putExtra("Det_id", sdet_id);
startActivity(i);
v.setBackgroundColor(Color.TRANSPARENT);
// TODO Auto-generated method stub
}
});

2 个答案:

答案 0 :(得分:5)

使用postDelayed()

    v.postDelayed(new Runnable() {
        @Override
        public void run() {
            //Your code that opens another activity
        }
    }, 1000L);

答案 1 :(得分:1)

您可以使用以下内容:

new Handler().postDelayed(new Runnable() {
                  @Override
                  public void run() {

                      Intent i=new Intent(SearxhJobs.this,JobsTypes.class);
                      startActivity(i);
                  }
              }, 5000);

此处等待最多5秒钟才能启动活动。

希望有所帮助