android 屏幕底部出现的这个小弹出窗口叫什么?
What do you call this tiny popup that appears at the bottom of the android screen called?
这可能是一个愚蠢的问题,但我是 android 术语的新手。
这个我已经看过很多次了,我想用这个作为通知方式。
不过我不知道这个叫什么
我搜索了类似的内容:
"Android notification at bottom of screen"
"Android popup at bottom of screen"
"Android notification box"
我还没到任何地方。
希望知道这个叫什么
这种通知称为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
这可能是一个愚蠢的问题,但我是 android 术语的新手。
这个我已经看过很多次了,我想用这个作为通知方式。 不过我不知道这个叫什么
我搜索了类似的内容:
"Android notification at bottom of screen" "Android popup at bottom of screen" "Android notification box"
我还没到任何地方。 希望知道这个叫什么
这种通知称为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