2011-07-15 101 views
4

我想實現的登錄屏幕如下所示:enter image description hereAndroid的文本輸入 - 在字段中顯示的字段名稱本身

凡字段的名稱將顯示在該領域本身。我在Eclipse中使用ADT插件。我嘗試設置文本輸入的android:text屬性,但我不認爲這是正確的,因爲通過密碼字段,只有點顯示(編輯文本),而不是文本本身。那麼什麼是屬性。我已查看the documentation for the EditText widget

的XML我現在有兩個EditText領域是:

<EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/editText1" android:inputType="textEmailAddress" android:text="@string/username"> 
    <requestFocus></requestFocus> 
</EditText> 
<EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/editText2" android:inputType="textPassword" android:text="@string/password" ></EditText> 
+0

您是否介意發佈您擁有的XML? – sealz

+0

@ harper89,我編輯了這個問題。請讓我知道是否還有其他事情。 – Gus

回答

8

你應該能夠與android:hintandroid:sethint的字段設置默認值我認爲它的第一次。

android:hint="Please enter your password" 

它的第一個,由於搜索SO。只是爲了得到更多的信息。

SO Question about android:hint