I want to show android Snackbar (android.support.design.widget.Snackbar) when the activity starts just like we show a Toast.
Snackbar
(android.support.design.widget.Snackbar)
Toast
Try this
Snackbar.make(findViewById(android.R.id.content), "Got the Result", Snackbar.LENGTH_LONG) .setAction("Submit", mOnClickListener) .setActionTextColor(Color.RED) .show();