2016-01-24 59 views
1
<EditText 
    android:id="@+id/password" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:inputType="textPassword" 
    android:hint="Password" 
    /> 

這是我在我的xml文件中的代碼,根據我的理解,android:inputType =「textPassword」應該會使輸入的字段顯示爲隱藏。在Android設備上運行時,文本不會被隱藏。textPassword不隱藏文字android

+0

textPassword不會隱藏文本輸入。它只會掩蓋帶*號或圈子的文字 – jomartigcal

+0

但我試過你的代碼,它對我來說工作得很好。試着重建你的項目並嘗試。 –

+0

額外檢查這個問題和相應的答案: - http://stackoverflow.com/q/5387985/1384010 希望它會幫助你! –

回答

0

試試這個:

<EditText 
android:layout_height="wrap_content" 
android:gravity="center" 
android:password="true" 
android:layout_width="match_parent" 
android:id="@+id/password" 
android:hint="password" 
android:maxLines="1"> 
</EditText> 
+0

'fill_parent'已被棄用了很長時間。你爲什麼使用它? –