当在代码中直接使用:
radiobutton.setChecked(true);
发现从界面上设置无效,于是就试试看会不会是报错了什么的,
try {
radiobutton.setChecked(true);
} catch (Exception e) {
e.printStackTrace();
}
一运行,发现报错了:android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.
主要是这个代码没有运行在UI进程中,所有设置无效。
(具体原因可看:http://daydayup1989.iteye.com/blog/784831)
于是,知道是这个原因,我就这样修改代码:
runOnUiThread(new Runnable() {
@Override
public void run() {
radiobutton.setChecked(true);
}
});
然后就可以了。