Posts

Showing posts with the label How to create a Login Screen in Android

How to create a Login Screen in Android

Image
In this tutorial we will learn about  “ How to create a Login Screen in Android ”,  Login stetp by step in android. A login application is the screen ask your credentials to login to some particular application. You might have seen it when logging into facebook,twitter,instagram e.t.c This articles explains, how to create a login screen and how to manage security when false attempts are made. First you have to define two TextView asking username and password of the user. The password TextView must have  inputType  set to password. Its syntax is given below − 1 2 3 4 5 6 7 8 9 10 EditText android : id  =   "@+id/editText2" android : layout_width  =   "wrap_content" android : layout_height  =   "wrap_content" android : inputType  =   "textPassword" EditText android : id  =   "@+id/editText1" android : layout_width  =   "wrap_content" android : layout_height  =   "wrap_content" Defi...