将文本置于 TextView 中居中
我有一个 TextView,其中有动态添加的文本。我的问题是,当我使用重力使文本居中时,它不会移动,因为宽度设置为“wrap_content”。
我应该怎么做才能解决这个问题?
I have a TextView that has text Dynamically Added to it. My problem is that when I use gravity for the centering the text, it doesn't move because the width is set to "wrap_content".
What should I do to resolve this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须将宽度设置为“wrap_content”以外的其他值。
You're going to have to set the width to something other than "wrap_content".
我知道答案已被接受,但您也可以将layout_gravity设置为居中,然后wrap_content仍然可以工作。
I know the answer has already been accepted here but you could have also set the layout_gravity to center too and then wrap_content would still work.