如何在 Android 中将两个图像之间的文本居中
我需要在两个图像之间居中放置少量文本。这篇文章几乎达到了我想要的效果,但是文本左对齐并且不在两个图像之间居中。
我尝试使用 android:layout_centerInParent,但文本显示在图像上,而不是在它们之间换行。
任何帮助表示赞赏。
预先感谢,
菲利普
I need to center a small amount of text between two images. This post nearly achieves what I want, however the text is left aligned and not centered between the two images.
How to place a text between two images in Android
I've tried using android:layout_centerInParent, but the text got displayed over the images instead of wrapping between them.
Any help appreciated.
Thanks in advance,
Philip
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你应该使用方向为水平的线性布局。除了 TextView 应该设置layout_weight =“1”,
I think you should use linearlayout with orientation is horizontal.Besides TextView should be set layout_weight = "1",
添加 android:gravity="center" 或 android:layout_gravity="center"。
Add android:gravity="center" or android:layout_gravity="center".