步骤

我可以像这样保存 SnackBar 实例:

mSnackBar = Snackbar.make(view, R.string.snack_text, Snackbar.LENGTH_INDEFINITE);

对于 第一次 时间,使用以下命令可以轻松显示:mSnackBar.show();
问题

但是在我使用 清除 这个 Snack 之后:mSnackBar.dismiss()
它没有在 LOLLIPOP 设备中再次显示,在 JELLYBEAN 模拟器中再次显示(当需要使用 show() 时),这是 预期的 行为。

问题

请帮我找出 LOLLIPOP 设备在此过程中的错误或缺失?

最佳答案

查看源代码,我可以看到“解雇 snackbar ”将使 currentSnackBar 无效。


public void dismiss(Callback callback, int event) {
    synchronized (mLock) {
        if (isCurrentSnackbarLocked(callback)) {
            cancelSnackbarLocked(mCurrentSnackbar, event);
        } else if (isNextSnackbarLocked(callback)) {
            cancelSnackbarLocked(mNextSnackbar, event);
        }
    }
}

/**
 * Should be called when a Snackbar is no longer displayed. This is after any exit
 * animation has finished.
 */
public void onDismissed(Callback callback) {
    synchronized (mLock) {
        if (isCurrentSnackbarLocked(callback)) {
            // If the callback is from a Snackbar currently show, remove it and show a new one
            mCurrentSnackbar = null;
            if (mNextSnackbar != null) {
                showNextSnackbarLocked();
            }
        }
    }
}

因此,当您在同一实例上进行表演时,此代码将运行
public void show(int duration, Callback callback) {
    synchronized (mLock) {
        if (isCurrentSnackbarLocked(callback)) {
            // Means that the callback is already in the queue. We'll just update the duration
            mCurrentSnackbar.duration = duration;

            // If this is the Snackbar currently being shown, call re-schedule it's
            // timeout
            mHandler.removeCallbacksAndMessages(mCurrentSnackbar);
            scheduleTimeoutLocked(mCurrentSnackbar);
            return;
        } else if (isNextSnackbarLocked(callback)) {
            // We'll just update the duration
            mNextSnackbar.duration = duration;
        } else {
            // Else, we need to create a new record and queue it
            mNextSnackbar = new SnackbarRecord(duration, callback);
        }

        if (mCurrentSnackbar != null && cancelSnackbarLocked(mCurrentSnackbar,
                Snackbar.Callback.DISMISS_EVENT_CONSECUTIVE)) {
            // If we currently have a Snackbar, try and cancel it and wait in line
            return;
        } else {
            // Clear out the current snackbar
            mCurrentSnackbar = null;
            // Otherwise, just show it now
            showNextSnackbarLocked();
        }
    }
}

如果为空,则不会显示 snackbar 。



您不应在 SnackBar 上调用dismiss,它会在持续时间到期或单击操作按钮时自动隐藏。只需再次调用 show 方法而不首先调用dismiss来再次显示SnackBar。

关于android - 使用 SnackBar 实例一次又一次地显示,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34555883/

10-13 04:08