Java runOnUiThread 和 Thread.sleep

Java runOnUiThread and Thread.sleep

我从一个单独的 class 中获得此方法,其中当调用结束时,我的 ImageView 的颜色从红色变为白色。示例代码如下:

public void endOfCall(){

    ((Activity)mContext).runOnUiThread(new Runnable(){
        @Override
        public void run(){
            TargetDetails.oncall.setVisibility(View.VISIBLE);
            TargetDetails.endcall.setVisibility(View.GONE);
        }
    });

    try{
        call.endCall();
    }catch (SipException se) {}

    call.close();

    //this is just a representation; not the actual code
    if(true){
      Thread.sleep(10000);
    }

    //new intent here
}

问题出现在我放置 Thread.sleep 的 'if' 条件时。在执行下面的代码之前等待 10 秒

TargetDetails.oncall.setVisibility(View.VISIBLE);
TargetDetails.endcall.setVisibility(View.GONE);

我想我遗漏了一些关于 Thread.sleep 的东西。我只想摆脱它,但我不确定除此之外还有其他选择。帮助。谢谢

使用 Handler 而不是让线程休眠。

所以不用你的 if(true) {.....} 试试这个:

Handler h = new Handler();
h.postDelayed(new Runnable() {
    @Override public void run() {
        //new intent here
    }
}, 10000);