我是Android的新手,我正在使用Robotium编写一些基本的Android测试,但这种情况失败,只有
"android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views."
以下是基本的测试用例解释: -
测试用例: -
public void testSearch() {
Activity a = getActivity();
SearchItemActivity search = new SearchItemActivity(solo);
search.searchText("ipod", a);
}
SearchItemActivity.searchText(String) is defined as
public void searchText(final String search, Activity act) {
Button v = (Button) act
.findViewById(com.test.mobile.R.id.text_search_field);
((Button) v).setText("");
((Button) v).setText(search);
solo.sendKey(Solo.ENTER);
solo.waitForActivity("FoundItemdDetailActivity");
solo.assertCurrentActivity("Expected FoundItemDetail activity","FoundItemdDetailActivity");
}
任何有关如何修改我的代码的建议都将受到赞赏
答案 0 :(得分:25)
@UiThreadTest
public void yourMethod() {
@UiThreadTest注释告诉Android构建此方法,以便它在UI线程上运行。这允许该方法更改正在测试的应用程序中的微调框小部件的状态。 @UiThreadTest的这种使用表明,如果需要,您可以在UI线程上运行整个方法。
http://developer.android.com/tools/testing/activity_test.html
答案 1 :(得分:6)
我猜您正在尝试从非UI线程更新UI。因此,您需要将代码放在runOnUiThread()
。
ActivityName.this.runOnUiThread(new Runnable() {
public void run() {
// your code to update the UI
}
});