constraintlayout用法总结(二)

上篇文章讲解了大部分constraintlayout的常用属性的讲解,而这篇文章描述其他一些属性,从官方了解一些属性并进行分解使用验证。

       首先让我们看看这篇文章要讲述的属性吧:

                                                      
                                                           Fig. 4 - Centering Positioning

       也就是我们想要让我们的控件位于父级布局中央,最直接明了的意思就是在约束布局当中保证各个保证的拉力相等这样就可以让空间居于中间。如下        

 
    

那么产生的效果:

             constraintlayout用法总结(二)_第1张图片 

        goneMargin

         这里有些属性如下:

  • layout_goneMarginStart
  • layout_goneMarginEnd
  • layout_goneMarginLeft
  • layout_goneMarginTop
  • layout_goneMarginRight
  • layout_goneMarginBottom

    字面意思就是如果有两个控件,而第二个控件需要位于某个位置,同时依赖于另外一个控件,但是无论另外那个控件是否处于visibility状态,第二个控件的距离一侧的margin都需要存在。效果图是:

                                    btn1处于visibility状态下,左侧有100的左边距

     

                                    btn1处于gone的状态下,左侧仍有100的左边距

上代码:

 

如代码所示,我在btn1当中添加了marginleft为100dp,在btn2中设置依赖btn1的右侧,同时添加了一个属性

app:layout_goneMarginLeft="100dp",这个属性就是在btn1在gone的情况下还能整体的保证左边距为100dp

Circular positioning (Added in 1.1)

You can constrain a widget center relative to another widget center, at an angle and a distance. This allows you to position a widget on a circle (see Fig. 6). The following attributes can be used:

  • layout_constraintCircle : references another widget id
  • layout_constraintCircleRadius : the distance to the other widget center
  • layout_constraintCircleAngle : which angle the widget should be at (in degrees, from 0 to 360)

 

                  
                                                                  Fig. 6 - Circular Positioning



    

    

      产生的效果就是:

                    constraintlayout用法总结(二)_第2张图片

至此,这篇总结就结束了,在文章一的接触上补充了几个属性进行解析。系列文章是本人使用研究的过程中的总结和体会。 

         

       

你可能感兴趣的:(随笔总结)