Android tutorial - Password Field Android | Android Password - android app development - android studio - android development tutorial
Learn android - android tutorial - Password field android - android examples - android programs
password field
- The JPasswordField class, a subclass of JTextField , provides specialized text fields for password entry.
- For security reasons, a password field does not show the characters that the user types.
- Instead, the field displays a character different from the one typed, such as an asterisk '*'. ... The password is "bugaboo".
- In Android, you can use “android.widget.EditText“, with inputType="textPassword" to render a password component.
- In this tutorial, we show you how to use XML to create a password field, label field and a normal button. When you click on the button, the password value will be displayed as a floating message (toast message).
1. Custom String
- Open “res/values/strings.xml” file, add some custom string for Demo - android emulator - android tutorialnstration.
File : res/values/strings.xml
2. Password
- Open “res/layout/main.xml” file, add a password component, EditText + inputType="textPassword".
File : res/layout/main.xml
3. Code Code
- Inside activity “onCreate()” method, attach a click listener on button, to display the password value.
File : MyAndroidAppActivity.java
4. Demo - android emulator - android tutorial
Run the application.
- Result, password field is displayed.
- Type password “wikitechy” and click on the submit button.