-
Notifications
You must be signed in to change notification settings - Fork 0
ShowHideEditTextView
Vijay edited this page Jul 11, 2017
·
3 revisions
Welcome to the ShowHidePasswordView wiki!
- This view can help you to create custom Edit text view for showing and hiding password.
- You can use ShowHidePasswordView java class as a reusable component in the app. And you can customize according to your requirement and its very easy to modify as well.
<com.showhidepasswordview.ShowHidePasswordView
android:id="@+id/showHideView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="8dp"
android:maxLength="10"
app:showPassword="SHOW"
app:hidePassword="HIDE"
android:imeOptions="actionNext"
tools:layout_editor_absoluteY="0dp"
tools:layout_editor_absoluteX="8dp">
</com.showhidepasswordview.ShowHidePasswordView>
ShowHidePasswordView showHidePasswordView = (ShowHidePasswordView) findViewById(R.id.showHideView);