Android Snackbar TextAlignment in Center

前端 未结 6 1881
误落风尘
误落风尘 2021-02-18 13:30

How to change the Snackbar text alignment to center ? bellow code is not working

Snackbar snack = Snackbar.make(findViewById(android.R.id.content), in         


        
6条回答
  •  盖世英雄少女心
    2021-02-18 14:17

    Another solution, using XML:

    • Your main theme has to inherit from Theme.MaterialComponents, and has to delcare its own styling for Snackbar and its TextView as follows:
    
    
    • Theme.MaterialComponents adds a margin to the snackbar, and it changes its animation. If you want the AppCompat style, do as follows:
    
    
    • Finally, we can edit our TextView:
    
    

提交回复
热议问题