我需要从 Robotium 触发一个意图并尝试了以下三种方法。他们都没有工作。你能告诉我吗?
//DOES NOT WORK ---
Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("market://details? id=com.readability"));
getInstrumentation().getContext().startActivity(intent);
//DOES NOT WORK
getInstrumentation().runOnMainSync(new Runnable() {
public void run() {
Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("market://details?id=com.readability"));
}
});
//DOES NOT WORK
solo.getCurrentActivity().runOnUiThread(new Runnable() {
public void run() {
Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("market://details?id=com.readability"));
getInstrumentation().getContext().startActivity(intent);
}
});