Center text in a toast in Android

后端 未结 11 1445
没有蜡笔的小新
没有蜡笔的小新 2020-12-13 01:58

I was wondering if there was a way to display all text in a toast to be centered. For instance, I have a toast that has 2 lines of text in it. For purely aesthetic reasons,

11条回答
  •  渐次进展
    2020-12-13 02:04

    It is dirty hack, but

    ((TextView)((LinearLayout)toast.getView()).getChildAt(0))
        .setGravity(Gravity.CENTER_HORIZONTAL);
    

提交回复
热议问题