来自Google Material Design文档Snackbars的一个实现:Snackbar
jopen
10年前
这个Android库实现了来自 Material Design 文档 Snackbars。
Snackbar.with(getApplicationContext()) // context .text("Item deleted") // text to display .actionLabel("Undo") // action button label .actionListener(new ActionClickListener() { @Override public void onActionClicked() { Log.d(TAG, "Undoing something"); } }) // action button's ActionClickListener .show(this); // activity where it is displayed