android layout布局
AndroidTextView对齐的两种⽅法
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 ⽂本对齐的⽅法详解,如有疑问还请⼤家留⾔,或者到本站社区交流,共同进步,感谢阅读,希望能帮助到⼤家,谢谢⼤家对本站的⽀持!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。