How to show Snackbar when Activity starts?

后端 未结 9 1262
你的背包
你的背包 2020-12-12 20:24

I want to show android Snackbar (android.support.design.widget.Snackbar) when the activity starts just like we show a Toast.

9条回答
  •  暖寄归人
    2020-12-12 20:40

    Try this

    Snackbar.make(findViewById(android.R.id.content), "Got the Result", Snackbar.LENGTH_LONG)
                            .setAction("Submit", mOnClickListener)
                            .setActionTextColor(Color.RED)
                            .show();
    

提交回复
热议问题