2013-05-20 74 views
1

我是新來的android和我布萊恩通過Android中的基本登錄應用程序。 我只是想知道如何在我們看到的所有應用程序中單擊用戶名字段時使「用戶名」消失。 現在我所要做的就是刪除用戶名字段中的字符串「用戶名」,然後輸入我覺得很尷尬的字符串。 有什麼我可以做的來實現這個功能?需要用戶名消失點擊

謝謝,提前

回答

1

簡單android:hint="Enter your name"財產您的用戶名編輯文本。

它看起來像

<EditText 
     android:id="@+id/editText_username" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:hint="Enter your name" > <!-- Here it is --> 
     <!-- Some other rules --> 
    </EditText> 

enter image description here

這就是所謂的水痕或Android的提示。

+0

感謝的人...真的有效... 感謝您的屏幕截圖 –

+0

享受buddy.Ask任何time.please接受它,所以它對其他有用:) –

0

你需要的是在Edittext中的提示功能。

<EditText 
     android:id="@+id/editText_username" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:ems="10" 
     android:hint="Username" >// This will go invisible if you click on edit text 


    </EditText> 
+0

是單獨需要還是其他標籤??? –

+0

你不需要任何其他的這個功能自己試試:) –

+0

請標記答案是正確的如果我幫你:) –

0

使用android:hint屬性設置水印的用戶名

+0

感謝男人......那就像一個魅力...... !!!! –