android中LinearLayout的布局优化

 场景一:

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:orientation="horizontal"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:baselineAligned="false"
  >

  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="5dip"
    android:text="TextView:p"
    />
  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="5dip"
    android:text="LargeTextView:p"
    android:textSize="30sp"
    />
</LinearLayout>

场景一运行结果:

场景二: 

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:orientation="horizontal"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  >

  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="5dip"
    android:text="TextView:p"
    />
  <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginRight="5dip"
    android:text="LargeTextView:p"
    android:textSize="30sp"
    />
</LinearLayout>

场景二运行结果:

 

以上两种场景差异性就在:LinearLayout属性设置了

android:baselineAligned="false"

这个属性是干嘛的?

baselineAligned:基准线对齐。

基准线:这个在中文中不常见,但在以字母为书写语言的其他国家非常常见

上面两个场景结果对比,很显然,baselineAligned设置为true(或者不设置),会计算基准线高度。但是我们平常开发中,大部分都是中文。所以在实编程中,如果是不需要用到android:baselineAligned的地方,都可以设置成false,这样也可以提高性能(因为不需要计算)!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值