Android 设置文本对齐到toast的中间
我有一条很长的祝酒消息。我想将文本设置在中间而不是开始向左对齐。
这可能吗?
I have a toast message which is pretty long. I would like to set the text in the middle and not to start align to the left.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Toast 是建立在 TextView 之上的,它的默认重力是左对齐的。因此,您需要创建自己的 TextView,如下所示:
并将 TextView 分配给 Toast,如下所示:
来源
Toast is built on a TextView and the default gravity of it is left aligned. So, you need to create your own TextView like this for instance :
And you assign the TextView to the Toast like this :
Source
这里:
Here: