app:layout_constraintBottom_toBottomOf= 的值
时间: 2024-09-15 09:12:58 浏览: 29
android 布局之ConstraintLayout的使用
`app:layout_constraintBottom_toBottomOf` 是 Android 自定义约束布局 (ConstraintLayout) 中的一个属性,它用于设置视图(View)的底部边缘与另一个指定视图的底部边缘对齐。这个值是一个引用表达式,通常是 `parent` 或者另一个 View 的 ID,表示你想让它与哪个视图保持底部对齐。
例如:
```xml
<androidx.constraintlayout.widget.ConstraintLayout>
<TextView
android:id="@+id/view1"
app:layout_constraintBottom_toBottomOf="parent" />
<!-- 这里 view1 的底部将与 ConstraintLayout 的底部对齐 -->
</androidx.constraintlayout.widget.ConstraintLayout>
```
如果值为 `"parent"`,则表示当前视图会紧贴其父容器的底部;如果值是一个具体的视图 ID,例如 `"@+id/view2"`,则表示视图1的底部与view2的底部对齐。
阅读全文