Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要这样的东西:
http://i.stack.imgur.com/utQUq.png
当 TextView 中的文本不是那么长时,它必须在父布局中居中。但是当文本变得更长以正确居中时,我们需要将其向左对齐。
您可以根据文本的大小编写if条件,并可以设置对齐方式。这是一个示例代码:
if(mytextview.getText.length() >10) { mytextview.setGravity("LEFT"); }
保持默认重力居中。