Android TextView对齐的两种方法

Android TextView对齐的两种方法,第1张

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

AndroID TextVIEw对齐的两种方法

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

 

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

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

<TextVIEw  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个汉字如“姓名”, 第三个是“名”。

<TextVIEw            androID:layout_wIDth="wrap_content"            androID:layout_height="wrap_content"            androID:text="姓"            androID:textcolor="#6e6e6e"            androID:textSize="13dp" />          <TextVIEw            androID:layout_wIDth="wrap_content"            androID:layout_height="wrap_content"            androID:text="姓名"            androID:visibility="invisible"            androID:textcolor="#6e6e6e"            androID:textSize="13dp" />          <TextVIEw            androID:layout_wIDth="wrap_content"            androID:layout_height="wrap_content"            androID:text="名"            androID:textcolor="#6e6e6e"            androID:textSize="13dp" />

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

总结

以上是内存溢出为你收集整理的Android TextView对齐的两种方法全部内容,希望文章能够帮你解决Android TextView对齐的两种方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1145574.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存