1. 标题的空格:
如果想要两个字和三个字对齐的话,不妨试试\u3000,举个栗子:android:text="邮\u3000箱:"android:text="手机号:"显示效果是两个一样长
2.安卓写代码的时候有些图片、文字等等我们只是用来站位或者先试一下效果,但是我们并不想在运行的时候出现,这个时候可以用tool:
(1)
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="运行的时候可见"
tools:text="编写代码的时候可以看见" />
</androidx.appcompat.widget.LinearLayoutCompat>
网友评论