Simple Login App Design Using Android Studio
In this tutorial i am discussing regarding a simple login App design in Android.This is simple design for login page,so java coding is not included.Also you need some images which you can download easily from the internet. The code is very simple ,here we are using Constrain layout and Relative layout . The code is as follows:- <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <ImageView android:id="@+id/imageView" android:layout_width="200dp" android:layout_height="219dp" android:layout_...