constraintLayout 属性 使用

constraintLayout一些简单总结和使用 1:安装constraint解决方案
constraintLayout 属性 使用
文章图片


2:添加依赖:截止2018/03/08最新版为1.0.5-Bate

dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:appcompat-v7:23.2.1' compile 'com.android.support:support-v4:23.2.1' compile 'com.android.support.constraint:constraint-layout:1.1.0-beta5' compile 'com.android.support:recyclerview-v7:23.0.0' compile(name:'sampleLibXutils',ext:'aar')}

3:布局中使用
constraintLayout 属性 使用
文章图片



4:一些使用的简单总结
【constraintLayout 属性 使用】1: 栅栏 控制view的相对位置
相对位置,相对于目标id的值为end,left,right,top,bottom,start,end
app:barrierDirection="end"
目标view的id,可以是多个id中间用,分割,不用写@+id
app:constraint_referenced_ids="tv1,tv2"

2: 分组,可以控制多个view显示隐藏
目标view的id,可以是多个id中间用,分割,不用写@+id
app:constraint_referenced_ids="tv1"

3 参考线
一个不显示的view宽高为0,作为其它view约束的参照物
android:orientation="vertical|horizontal"
app:layout_constraintGuide_begin="30dp"
layout_constraintGuide_percent="0.5"

4:相对位置属性,其中包括(percent,end,left,right,top,bottom,start,end)值为"@+id/id_tv"
app:layout_constraintTop_toBottomOf="@+id/textView|percent"
Left_toLeftOf
Left_toRightOf
Top_toTopOf
Right_toLeftof
Bottom_toTop...

5:goneMargin属性和margin同时出现
当marinLeft=10dp,goneMarinLeft="100",左边view消失时goneMargin才会生效
app:layout_goneMarginRight=""
goneMarginLeft
goneMarginTop
goneMarginStart
goneMarginEnd...

5:比例属性
宽高比为16:9或者一个float类型的数
layout_constraintDimensionRatio="16:9"

6:权重,当几个view相互依赖,组成链条后可以使用weight和LinearLayout类似
注意:链条成员宽度需要为0dp或match_contraint
layout_constraintHorizontal_weight="2"
layout_constraintVertical_weight="1"

7:偏置,相对于父类距离的百分比
app:layout_constraintVertical_bias="0.5"
app:layout_constraintHorizontal_bias="0.5"

8:chainStyle当几个view相互依赖,组成链条后,在第一个view键头的位置
注意:链条成员宽度不能为0dp只能为wrap_content或具体的宽度
app:layout_constraintHorizontal_chainStyle="packed|spread|spread_inside"



9:宽/高度为父的百分百比
android:layout_width="0dp"
app:layout_constraintWidth_default="percent"
app:layout_constraintWidth_percent="0.4"

    推荐阅读