XML布局中的NBSP或空格

时间:2013-12-29 04:36:14

标签: android xml android-layout

当我想在我的Android XML文件中创建一个空格时,我一直在创建“空白”文本视图。

例如,我的线性布局活动如下所示:

enter image description here

因此,它会在显示“REGISTRATION”的textview和显示“First Name”的下一个文本视图之间创建一个空格。

还有另一种方法吗?我觉得这会使我的代码变得草率。

这是我的代码:

<TextView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:id="@+id/tbl_result"
    android:textColor="#00FF00"
    android:text="Register an Account"
/>
<TextView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:id="@+id/blankspace"

/>
<TextView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:textColor="#00FF00"
    android:text="First Name"
/>

<EditText 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:id="@+id/first" 
/>

<TextView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:textColor="#00FF00"
    android:text="Last Name"
/>

<EditText 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:id="@+id/last" 
/>

1 个答案:

答案 0 :(得分:0)

<TextView 
android:layout_width="wrap_content" 
android:layout_height="wrap_content"
android:id="@+id/tbl_result"
android:textColor="#00FF00"
android:text="Register an Account"
/>

/>
<TextView 
android:layout_width="wrap_content" 
android:layout_height="wrap_content"
android:textColor="#00FF00"
// set ur margin here instead of putting one view
android:layout_marginTop="30dp"
android:text="First Name"
/>

<EditText 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:id="@+id/first" 
android:layout_margin
/>

<EditText 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:id="@+id/last" 
 />