andriod studio如何设置上下控件的间距
时间: 2023-05-12 16:06:23 浏览: 177
您可以通过在布局文件中使用android:layout_marginTop和android:layout_marginBottom属性来设置上下控件的间距。例如,如果您想要在一个RelativeLayout中将两个TextView控件分开10dp,您可以这样设置:
```
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView 1"
android:layout_marginTop="10dp"/>
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView 2"
android:layout_below="@+id/textView1"
android:layout_marginTop="10dp"/>
```
在这个例子中,第二个TextView控件使用了android:layout_below属性来指定它应该放在第一个TextView控件的下面,然后使用android:layout_marginTop属性来设置它们之间的间距。
阅读全文