如果可能的话,我想将它的值放在条件语句(if)中并在其中加入一些参数。
答案 0 :(得分:2)
你可以这样做:
Toast myToast = Toast.makeText(this, "Hellow World!!!", Toast.LENGTH_SHORT);
myToast.show();
//Now the statement below gets the text displayed
String displayedText = ((TextView)((LinearLayout)myToast.getView()).getChildAt(0)).getText().toString();