android - How to align message textview to the center in snackbar? -
how align message textview center horizontally in snackbar in android?
below sample, making snackbar text center horizontal
snackbar snackbar = snackbar.make(findviewbyid(r.id.coordinatorlayout), "hello", snackbar.length_short); snackbar.show(); view view = snackbar.getview(); textview txtv = (textview) view.findviewbyid(android.support.design.r.id.snackbar_text); txtv.setgravity(gravity.center_horizontal);
Comments
Post a Comment