我是
android开发的新手,我只是想知道如何在两个TextView之间添加空间?任何帮助,将不胜感激.
我到目前为止编写的代码
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:id="@+id/lbl_group_coworkers" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Coworkers" /> <TextView android:id="@id/lbl_group_" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Family"/> </LinearLayout>
@R_502_323@
你可以使用android:layout_marginTop =“value”
像这样
像这样
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:id="@+id/lbl_group_coworkers" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Coworkers" /> <TextView android:id="@id/lbl_group_" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:text="Family"/> </LinearLayout>