是否可以获取Toast.makeText()字符串的值?

时间:2015-11-29 11:35:35

标签: android android-toast

如果可能的话,我想将它的值放在条件语句(if)中并在其中加入一些参数。

1 个答案:

答案 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();