我需要這樣做,就像您將PIN碼放入手機時一樣,數字會轉換爲星號(* *)。如何將edittext中引入的文本轉換爲密碼樣式(*****)?
有沒有辦法在佈局xml文件中做到這一點?如果沒有,有沒有辦法用java做到這一點?
我需要這樣做,就像您將PIN碼放入手機時一樣,數字會轉換爲星號(* *)。如何將edittext中引入的文本轉換爲密碼樣式(*****)?
有沒有辦法在佈局xml文件中做到這一點?如果沒有,有沒有辦法用java做到這一點?
我解決了它。你必須把android:password="true"
放在xml上。
<EditText
android:id="@+id/Text_password"
android:password="true"
android:layout_width="80dip"
android:singleLine="true"
android:inputType="text"
android:hint="Password"
android:layout_height="wrap_content">
要做到這一點使用代碼:
fieldname.setTransformationMethod(android.text.method.PasswordTransformationMethod.getInstance());