LinearLayout中的baselineAligned属性

简介: 相信在用studio写布局xml的时候LinearLayout会报一些警告Set android:baselineAligned="false" on this element for better performance less在使用lin...

相信在用studio写布局xml的时候LinearLayout会报一些警告

Set android:baselineAligned="false" on this element for better performance less

在使用lint检查时也会出现

Missing baselineAligned attribute

先来看baselineAligned这个属性的字面意思baseline Aligned基线对齐
那和我们平时的开发有什么关系呢
出现此警告时大多(其他还没发现)还使用了权重属性,LinearLayout默认的为true,下面结合一个小例子大家就会很快理解直接上代码

我先设置为false,大家忽略其中的中文

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:baselineAligned="false"
    android:layout_height="match_parent">
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="开始"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="开始"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="开始进行龟兔赛跑比赛了吗"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="开始"
        />
</LinearLayout>
img_7cceb1da0af1a8280a8cec47f3ff6d45.png
Mou icon

设置为true后

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal" android:layout_width="match_parent"
    android:baselineAligned="true"
    android:layout_height="match_parent">
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="开始"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="开始"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="开始进行龟兔赛跑比赛了吗"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="开始"
        />
</LinearLayout>
img_a9a5c7be728fd634bf6be8c808e06d0f.png
Mou icon

没看到变化?

img_631c139d6737959c8247d0031eb2e83c.png
Mou icon

相信看了这张大家就明白了
设置为true时同时设置了layout_weight属性控件的对齐方式会根据控件内部的内容对齐,当设置为false时会根据控件的上方对齐

相关文章
|
Android开发 数据安全/隐私保护
Android TextView 使用以及属性(方法)大全(下)
TextViewXML属性和相关方法说明(2)
1108 0
|
Android开发
Android控件 TextView属性大全
Android控件 TextView属性大全
|
数据安全/隐私保护 Android开发
CardView使用及属性
CardView使用及属性
219 0
CardView使用及属性
EditText与TextView的开发中的常用属性,打造完美布局
EditText与TextView的开发中的常用属性,打造完美布局
85 0
|
XML Android开发 数据格式
Android TextView 使用以及属性(方法)大全(上)
TextView是什么 使用TextView 1.在xml中创建并设置属性 2.在xml中创建,在代码中设置属性 效果图: 布局文件 : 在代码中实现: 运行结果分析 3.在代码中创建并设置属性
417 0
Android TextView 使用以及属性(方法)大全(上)
|
存储 XML 自然语言处理
Android TextView 使用以及属性(方法)大全(中)
TextViewXML属性和相关方法说明(1)
1084 0
|
Android开发 容器
Android layout布局中所有控件的属性
终于建了一个自己个人小站:https://huangtianyu.gitee.io,以后优先更新小站博客,欢迎进站,O(∩_∩)O~~ 第一类:属性值 true或者 false android:layout_centerHrizontal 水平居中    android:layout_cent...
1459 0