在linearlayout而且是horizontal的布局中如果有几个相邻的textview,排列规则是以baseline为基准而不是bottom或者top

<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。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值