How to show Snackbar when Activity starts?
问题 I want to show android Snackbar (android.support.design.widget.Snackbar) when the activity starts just like we show a Toast . But the problem is we have to specify the parent layout when creating Snackbar like this: Snackbar.make(parentlayout, "This is main activity", Snackbar.LENGTH_LONG) .setAction("CLOSE", new View.OnClickListener() { @Override public void onClick(View view) { } }) .setActionTextColor(getResources().getColor(android.R.color.holo_red_light )) .show(); How to give parent