<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_centerInParent="true"
android:orientation="horizontal">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="abcd"
android:textSize="25sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:text="fds"
android:textSize="12sp" />
</LinearLayout>
</RelativeLayout>
这样的布局,如果不是两个textview而是imageview,会直接两个顶到上面,但是两个textview出现了这种情况
是linearlayout的原因,如果多个textview并排就会以textview的baseline为基准排列,所以出现了这种情况
解决方法:linearlayout有这个属性android:baselineAligned="false"默认是true。加上之后
就变成我们想要的样子,有同学可能会问,为什么字体会有上下空白,这就涉及到自定义控件的知识,因为textview控件的设计有点类似于四线三格,一般内容都是在第一条线和第三条线之间也就是第一格和第二格,有少数字母会用到第三格例如g。