How to align message textview to the center in sna

2019-05-18 12:10发布

How to align message textview to the center Horizontally in snackbar in android?

2条回答
贼婆χ
2楼-- · 2019-05-18 12:49

Try to set both textAlignment and Gravity to the Gravity.CENTER_HORIZONTAL

snackTextView.setGravity(Gravity.CENTER_HORIZONTAL);   
snackTextView.setTextAlignment(Gravity.CENTER_HORIZONTAL);
查看更多
Melony?
3楼-- · 2019-05-18 12:50

Below is a sample, for making the 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);
查看更多
登录 后发表回答