获取toast的Text的值

//获取toast的Text的值
TextView toastTextView = (TextView)solo. getView("message", 0);  
System.out.println(toastTextView+"-------------------------");
if(toastTextView!=null){
      String strin= ((TextView) toastTextView).getText().toString();
      System.out.println(strin+"-------------------------");
}

你可能感兴趣的:(robotium)