当前位置:   article > 正文

android 多行 对齐方式,Android TextView对齐的两种方法

textview第二行...和第一行对齐

Android TextView对齐的两种方法

发布时间:2020-09-19 05:34:00

来源:脚本之家

阅读:117

作者:lqh

Android TextView对齐的两种方法

在写Android布局文件时, 经常碰到如下图的TextView左右对齐的情况, 即姓名和手机号码纵向对齐。、

464bc02cc7b7bd2f278c2b731b39d292.png

第一种方法:  在姓和名之间加空格, 但是如果用键盘的空格会在一些机型上对齐、一些机型上不对齐。

\u3000是全角空格; \u0020是半角空格,效果跟在英文输入法下直接敲键盘空格一样。 这里要用全角空格,  占位一个汉字。

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="姓\u3000\u3000名"

android:textColor="#6e6e6e"

android:textSize="13dp" />

第二种方法: 比较low。    用3个TextView, 第一个是“姓”、第二个是invisible(利用不显示但占位的特性)的2个汉字如“姓名”, 第三个是“名”。

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="姓"

android:textColor="#6e6e6e"

android:textSize="13dp" />

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="姓名"

android:visibility="invisible"

android:textColor="#6e6e6e"

android:textSize="13dp" />

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="名"

android:textColor="#6e6e6e"

android:textSize="13dp" />

以上就是关于Android TextView 文本对齐的方法详解,如有疑问还请大家留言,或者到本站社区交流,共同进步,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/242812
推荐阅读
相关标签
  

闽ICP备14008679号