Android:我希望在两个textview之间有20 dp的差距我使用相对视图并且已经使用textview 2应该在textview 1之下,但我不明白如何在这两个textviews之间给出更多的差距
答案 0 :(得分:2)
您可以使用填充或边距。我推荐保证金。
<TextView
android:text="text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/your_id"
android:layout_margin="20dp" />
编辑:
感谢@Gabe Sechan放大答案。如果只想在一侧使用边距,则可以使用所需边的特定边距指令。例如:
仅限于底部的保证金
<TextView
android:text="text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/your_id"
android:layout_marginBottom="20dp" />
和其他方
android:layout_marginTop
,android:layout_marginLeft
和android:layout_marginRight
。