android中EditText的多行文本对齐
我想编写一个android应用程序,它可以像microsoft word一样执行文本对齐任务。整个文本对齐是可能的,但不是每一行。我想为不同的行设置不同的对齐方式。我该怎么做。
I want to write an android application which can perform text alignment task like microsoft word.Whole text alignment is possible but not for every line.I want to set different alignment for different line.How can I do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,如果你想将其向右对齐,你可以使用
editText.setGravity(Gravity.RIGHT);
我认为不可能将文本居中,但也许有人知道我不知道的东西。Well if you want to align it to the right you can use
editText.setGravity(Gravity.RIGHT);
I don't think it's possible to center the text, but maybe someone knows something I don't.