0
로보 티움에서 인 텐트를 발사해야하며 다음 세 가지 방법을 시도했습니다. 그들 중 누구도 일하지 않았습니다. 제발 조언 해 주시겠습니까? 액티비티 컨텍스트 외부에서 startActivity를()를 호출로보 티움에서 인 텐트를 발사하는 방법
//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);
}
});