ConstraintLayout 平分布局

原文链接:https://juejin.im/post/5a31ee3af265da43294e0fe1

添加依赖

compile 'com.android.support.constraint:constraint-layout:1.0.2'

创建布局

 
  1. <?xml version="1.0" encoding="utf-8"?>

  2. <android.support.constraint.ConstraintLayout

  3. xmlns:android="http://schemas.android.com/apk/res/android"

  4. xmlns:app="http://schemas.android.com/apk/res-auto"

  5. android:layout_width="match_parent"

  6. android:layout_height="match_parent"

  7. android:orientation="vertical">

  8.  
  9. <Button

  10. android:id="@+id/bt_a"

  11. android:layout_width="0dp"

  12. android:layout_height="wrap_content"

  13. android:text="scroller_scroll"

  14. android:textSize="12dp"

  15. app:layout_constraintBottom_toTopOf="@+id/button3"

  16. app:layout_constraintHorizontal_weight="1"

  17. app:layout_constraintLeft_toLeftOf="parent"

  18. app:layout_constraintRight_toLeftOf="@+id/bt_b"/>

  19.  
  20. <Button

  21. android:id="@+id/bt_b"

  22. android:layout_width="0dp"

  23. android:layout_height="wrap_content"

  24. android:text="scroller_fling"

  25. android:textSize="12dp"

  26. app:layout_constraintBottom_toTopOf="@+id/button3"

  27. app:layout_constraintHorizontal_weight="1"

  28. app:layout_constraintLeft_toRightOf="@+id/bt_a"

  29. app:layout_constraintRight_toLeftOf="@+id/bt_c"/>

  30.  
  31. <Button

  32. android:id="@+id/bt_c"

  33. android:layout_width="0dp"

  34. android:layout_height="wrap_content"

  35. android:text="over_scroll"

  36. android:textSize="12dp"

  37. app:layout_constraintBottom_toTopOf="@+id/button3"

  38. app:layout_constraintHorizontal_weight="1"

  39. app:layout_constraintLeft_toRightOf="@+id/bt_b"

  40. app:layout_constraintRight_toRightOf="@+id/bt_d"/>

  41.  
  42. <Button

  43. android:id="@+id/bt_d"

  44. android:layout_width="0dp"

  45. android:layout_height="wrap_content"

  46. android:text="overs_fling"

  47. android:textSize="12dp"

  48. app:layout_constraintBottom_toTopOf="@+id/button3"

  49. app:layout_constraintHorizontal_weight="1"

  50. app:layout_constraintLeft_toRightOf="@+id/bt_c"

  51. app:layout_constraintRight_toRightOf="parent"/>

  52.  
  53. <Button

  54. android:id="@+id/button3"

  55. android:layout_width="0dp"

  56. android:layout_height="wrap_content"

  57. android:layout_marginEnd="8dp"

  58. android:layout_marginStart="8dp"

  59. android:layout_marginTop="8dp"

  60. android:text="Button"

  61. app:layout_constraintBottom_toBottomOf="parent"

  62. app:layout_constraintEnd_toEndOf="parent"

  63. app:layout_constraintStart_toStartOf="parent"

  64. />

  65.  
  66. </android.support.constraint.ConstraintLayout>

  67. 复制代码

 

 

 

需要了解的地方

  1. 宽度为0dp android:layout_width="0dp"
  2. 需要准确指定左右的约束 app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintRight_toLeftOf="@+id/bt_b"//使用@id 编译不通过,使用@+id就可以了
  3. 指定权重 app:layout_constraintHorizontal_weight="1"
  4. 约束也可以为parent app:layout_constraintBottom_toBottomOf="parent"

转载于:https://juejin.im/post/5a31ee3af265da43294e0fe1

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值