本文介绍了小吃店堆栈将始终仅显示最后一个小吃店的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Snackbar.make(...).show()将仅显示最后一个小吃条,而与其他小吃条消失的烤面包不同.

The Snackbar.make(...).show() will only show the last snackbar unlike toast the other snackbars are gone.

for(int i = 1;i < 11;i++) {
   Snackbar.make(..., "number: " + i, Snackbar.LENGTH_SHORT).show();
}

有时候,小吃栏应在网络任务之后显示,而小吃条应该在网络任务之前显示,秒小吃条从不显示.

Sometimes when the snackbar should show after network task and one should show before network task, the seconds snackbar is never shown.

我正在使用coordinatorlayout.

Im using a coordinatorlayout.

推荐答案

请参考Android组件文档:

Please refer the Android components docs:

这篇关于小吃店堆栈将始终仅显示最后一个小吃店的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-11 03:51