为什么我不能为 textView (android) 应用边距?
Why I can't apply margin for textView (android)?
TextView代码:
<TextView
android:id="@+id/description_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:text=""
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/domain_text"
tools:text="Description"
tools:visibility="visible" />
Here you can look at whole XML file
一切似乎都是正确的,但如果我启动该应用程序,我会发现它不起作用。看截图。 image
有不懂的就写吧,我的英文很差。
我该如何解决我的问题?
当你使用constraints,想要根据设置的constraints来设置widget的width
/height
,你将它的width
/height
设置为0dp
这意味着将约束填充为:
android:layout_width="0dp"
android:layout_height="0dp"
它将根据约束填充所有可用的 space,然后,您的 margin
是否可以工作。
TextView代码:
<TextView
android:id="@+id/description_text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:text=""
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/domain_text"
tools:text="Description"
tools:visibility="visible" />
Here you can look at whole XML file 一切似乎都是正确的,但如果我启动该应用程序,我会发现它不起作用。看截图。 image
有不懂的就写吧,我的英文很差。
我该如何解决我的问题?
当你使用constraints,想要根据设置的constraints来设置widget的width
/height
,你将它的width
/height
设置为0dp
这意味着将约束填充为:
android:layout_width="0dp"
android:layout_height="0dp"
它将根据约束填充所有可用的 space,然后,您的 margin
是否可以工作。