layout_constraintEnd_toEndOf
时间: 2023-06-22 22:20:34 浏览: 194
ConstraintLayout
3星 · 编辑精心推荐
layout_constraintEnd_toEndOf是Android中ConstraintLayout布局中的一个约束属性,用于将当前控件的右边(end)与另一个控件的右边(end)进行约束。
例如,假设有一个TextView和一个Button,要求Button控件放在TextView控件的右边,可以使用以下约束:
```xml
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="@+id/textView"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
/>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>
```
在上面的代码中,Button控件的`layout_constraintEnd_toEndOf`属性设置为TextView控件的ID,这样Button就被约束在TextView控件的右边。注意,这里使用`@+id/textView`来引用TextView控件的ID,表示如果TextView控件还没有ID,会先为它生成一个新的ID。
阅读全文