我写了一个小应用程序,每3秒更改一次应用程序背景。我使用Handler和Runnable对象来实现这一点。它工作正常。这是我的代码:
public class MainActivity extends Activity {
private RelativeLayout backgroundLayout;
private int count;
private Handler hand = new Handler();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button clickMe = (Button) findViewById(R.id.btn);
backgroundLayout = (RelativeLayout) findViewById(R.id.background);
clickMe.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
count = 0;
hand.postDelayed(changeBGThread, 3000);
}
});
}
private Runnable changeBGThread = new Runnable() {
@Override
public void run() {
if(count == 3){
count = 0;
}
switch (count) {
case 0:
backgroundLayout.setBackgroundColor(getResources().getColor(android.R.color.black));
count++;
break;
case 1:
backgroundLayout.setBackgroundColor(Color.RED);
count++;
break;
case 2:
backgroundLayout.setBackgroundColor(Color.BLUE);
count++;
break;
default:
break;
}
hand.postDelayed(changeBGThread, 3000);
}
};
}
这里我正在改变非UI线程中的UI背景,即run {()中的backgroundLayout.setBackgroundColor(Color.RED);
;它是如何工作的?
答案 0 :(得分:14)
runnable不是后台线程,它是可以在给定线程中运行的工作单元。
Handler不会创建一个新线程,它会绑定到它在(在这种情况下是主线程)中创建的线程的looper,或者绑定到在构造期间给它的looper。
因此,你没有在后台线程中运行任何东西,你只是在处理程序上排队一条消息,以便在以后的主线程上运行