Show password button android

How to Toggle Password Visibility in Android?

As we know that toggling means switching between the two different options by pressing a single button. So In this article, we would be seeing how to change the password visibility by pressing a single button (here it would be eye button), ie with an input of password type, we can also enable an icon, that can show or hide the text that the user is typing. To implement this project we would be using the TextInputLayout(child of Linear Layout), which is a design component that comes with the Android Material Design Library.Since we would be entering the password, TextInputEditText will be used instead of normal EditText, since TextInputEditText is a sub-class of EditText and TextEditText is a child of TextInputLayout.There are five XML attributes associated with the password visibility toggle.

  • passwordToggleEnabled: This attribute has its value either true or false, so when we want the password to be toggleable, we should assign this attribute the true value.
  • passwordToggleTint: allows giving the color the visibility toggle icon.
  • passwordToggleTintMode: allows giving different background modes to the toggle icon.
  • passwordToggleDrawable: allows us to give a different icon instead of the default eye image to the toggle icon.
  • passwordToggleContentDescription: Allows us to give the description to the toggle icon.

A sample GIF is given below to get an idea about what we are going to do in this article. Note that we are going to implement this project using the Kotlin language.

Читайте также:  Прозрачность кнопки android studio

Step by Step Implementation

Step 1: Create a New Project

To create a new project in Android Studio please refer to How to Create/Start a New Project in Android Studio. Note that select Kotlin as the programming language.

Источник

Show and Hide Android EditText Password

Previously we had posted some posts like simple android contact form, material design login screen XML ui design, material design sign up/registration for android, floating label for android using design support library etc. In this tutorial, you will learn to show and hide edittext password in android application. Mobile screen is very small in comparison to desktop so there can be error while typing password in mobile, it is better to put show password option. Here you will learn to put an eye icon for show and hide password.

There are different ways to show and hide password in android like using toggle button, check box, using image icon and so on. But using eye icon is best way to show and hide password and you will learn it here.

Android Example: How to Show and Hide Password in Android Using Eye Icon

Let’s start by adding compile ‘com.android.support:appcompat-v7:23.2.0’ and compile ‘com.github.scottyab:showhidepasswordedittext:0.6’ dependencies in your build.gradle file. Build.gradle file will look like below.

XML Layout File

Open your XML layout file and add TextInputLayout widget using design support library. Inside TextInputLayout com.scottyab.showhidepasswordedittext.ShowHidePasswordEditText with app:drawable_hide, app:drawable_show and app:tint_color attributes. Following is the complete content of XML layout file.

res/layout/hide_show_android_edittext_password.xml

Java Activity File

Following is the code of java activity file.

Читайте также:  Пропали всплывающие уведомления ватсап андроид

Источник

Оцените статью