1. 程式人生 > >Android ConstraintLayout 屬性列表以及使用

Android ConstraintLayout 屬性列表以及使用

大自然的搬運工
參考: http://www.jianshu.com/p/c60f787817ad
https://juejin.im/post/5a1d9ba66fb9a044fb07819e

  1. app:layout_constraintLeft_toLeftOf 表示此控制元件的左邊框與某個控制元件的左邊框對齊或者在其右邊
  2. app:layout_constraintLeft_toRightOf 表示此控制元件的左邊框與某個控制元件的右邊框對齊或者在其右邊
  3. app:layout_constraintRight_toLeftOf 表示此控制元件的右邊框與某個控制元件的左邊框對齊或在其左邊
  4. app:layout_constraintRight_toRightOf 表示此控制元件的右邊框與某個控制元件的右邊框對齊或在其左邊
  5. app:layout_constraintTop_toTopOf 表示此控制元件的頂部邊框與某個控制元件的頂部邊框水平對齊或在其下邊
  6. app:layout_constraintTop_toBottomOf 表示此控制元件的頂部邊框與某個控制元件的底部邊框水平對齊或在其下邊
  7. app:layout_constraintBottom_toTopOf 表示此控制元件的底部邊框與某個控制元件的頂部邊框水平對齊或其上邊
  8. app:layout_constraintBottom_toBottomOf 表示此控制元件的底部邊框與某個控制元件的底部邊框水平對齊或其上邊
  9. app:layout_constraintBaseline_toBaselineOf 表示此控制元件與某個控制元件水平對齊
  10. app:layout_editor_absoluteX 表示此控制元件在佈局中X軸的絕對座標點
  11. app:layout_editor_absoluteY 表示此控制元件在佈局中Y軸的絕對座標點
  12. app:layout_constraintGuide_begin 表示在佈局中引導線距頂部或左邊框的距離
  13. app:layout_constraintGuide_end 表示在佈局中引導線距底部的距離
  14. app:layout_constraintGuide_percent 表示在整個佈局中引導線距離左邊框的百分百
  15. app:layout_constraintStart_toEndOf 表示此控制元件的左邊界在某個控制元件右邊界的右邊,及表示此控制元件在某個控制元件的右邊
  16. app:layout_constraintStart_toStartOf 表示此控制元件的左邊界與某個控制元件的左邊界在同一垂直線上
  17. app:layout_constraintEnd_toStartOf 表示此控制元件的右邊界與某個控制元件的左邊界在同一垂直線上
  18. app:layout_constraintEnd_toEndOf 表示此控制元件的右邊界與某個控制元件的右邊界對齊
  19. app:layout_constraintHorizontal_bias 表示此控制元件在佈局中的水平方向上的偏移百分百
  20. app:layout_constraintVertical_bias 表示此控制元件在佈局中的的垂直方向上的偏移百分百
  21. app:layout_constraintDimensionRatio 表示兩個控制元件的縱橫比,而使用則需要把寬(layout_width)或者高(layout_height)設定為0dp,根據另一個屬性和比例, 計算當前屬性, 如兩個圖片控制元件的顯示大小,app:layout_constraintDimensionRatio=”4:3”;
  22. app:layout_goneMarginLeft
  23. app:layout_goneMarginTop
  24. app:layout_goneMarginRight
  25. app:layout_goneMarginBottom
  26. app:layout_goneMarginStart
  27. app:layout_goneMarginEnd