How to show Snackbar when Activity starts?

后端 未结 9 1259
你的背包
你的背包 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:35

    It can be done simply by using the following codes inside onCreate. By using android's default layout

    Snackbar.make(findViewById(android.R.id.content),"Your Message",Snackbar.LENGTH_LONG).show();
    

提交回复
热议问题