出现在 android 屏幕底部的这个小弹出窗口叫什么?

Fis*_*ish 4 user-interface notifications android popup

这可能是一个愚蠢的问题,但我是 android 术语的新手。

这出现在屏幕底部

我已经多次看到这种情况,我想将其用作通知方法。不过,我不知道这叫什么。

我搜索了类似的东西:

“屏幕底部的Android通知”“屏幕底部的Android弹出窗口”“Android通知框”

我什么地方都没有。我希望知道这叫什么。

the*_*e64 9

这种通知称为 Toast。如果你想在你的应用中使用 Toasts,你要做的就是写一行代码

    Toast.makeText(getApplicationContext(), //Context
                   "This is my message", // Message to display
                    Toast.LENGTH_SHORT // Duration of the message, another possible value is Toast.LENGTH_LONG
                    ).show(); //Finally Show the toast
Run Code Online (Sandbox Code Playgroud)