Posts

Showing posts from July, 2020

Learn How to create simple Login UI in android studio

Image
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="wrap_content"     android:layout_gravity="center"     android:layout_margin="10dp"     android:orientation="vertical"     tools:context=".MainActivity">     <TextView         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:layout_gravity="center"         android:layout_margin="10dp"         android:fontFamily="cursive"         android:padding="50dp"         android:text="Login"         android:textColor="@color/colorPrimaryDark"         android:textSize="110sp"         android:textStyle=&qu