Center text in a toast in Android

后端 未结 11 1400
没有蜡笔的小新
没有蜡笔的小新 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:16

    Toast t=Toast.makeText(getApplicationContext(),"Text",Toast.LENGTH_LONG);
    t.setText("Password Does't match...");
    t.setGravity(0, 0, 0);
    t.show();
    

    simple code for toast most be center

提交回复
热议问题