How to change the Snackbar text alignment to center ? bellow code is not working
Snackbar snack = Snackbar.make(findViewById(android.R.id.content), in
The code below does the trick for me:
TextView tv = (TextView) view.findViewById(android.support.design.R.id.snackbar_text); if(tv!=null) { if (Build.VERSION.SDK_INT > Build.VERSION_CODES.JELLY_BEAN) tv.setTextAlignment(View.TEXT_ALIGNMENT_CENTER); tv.setGravity(Gravity.CENTER_HORIZONTAL); }