mirror of
https://github.com/hmalik144/DaysLeft.git
synced 2025-12-10 03:05:29 +00:00
# migrated to androidx - update to mvvm - creation of viewmodels and factories - dependency injection with kodein - app class created with modules - creation of firebase/live data class (put out fires from migration)
139 lines
5.5 KiB
XML
139 lines
5.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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"
|
|
android:background="@drawable/spash_drawable"
|
|
tools:context="com.appttude.h_mal.days_left.Login.FullscreenActivity">
|
|
|
|
<ProgressBar
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/pb"
|
|
android:visibility="gone"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="12dp"
|
|
android:layout_centerInParent="true">
|
|
|
|
<androidx.cardview.widget.CardView
|
|
style="@style/cardview_theme"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="12dp"
|
|
app:cardBackgroundColor="@color/two">
|
|
|
|
<AutoCompleteTextView
|
|
android:id="@+id/name_register"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="18dp"
|
|
android:layout_marginRight="18dp"
|
|
android:autofilledHighlight="@android:color/transparent"
|
|
android:ems="10"
|
|
android:hint="Enter Full Name"
|
|
android:importantForAutofill="yes"
|
|
android:inputType="textPersonName"
|
|
android:maxLines="1"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:textColorHighlight="@color/three" />
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<androidx.cardview.widget.CardView
|
|
style="@style/cardview_theme"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="12dp"
|
|
app:cardBackgroundColor="@color/two">
|
|
|
|
<AutoCompleteTextView
|
|
android:id="@+id/email_register"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="18dp"
|
|
android:layout_marginRight="18dp"
|
|
android:autofilledHighlight="@android:color/transparent"
|
|
android:ems="10"
|
|
android:hint="Enter Email"
|
|
android:importantForAutofill="yes"
|
|
android:inputType="textEmailAddress"
|
|
android:maxLines="1"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:textColorHighlight="@color/three" />
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<androidx.cardview.widget.CardView
|
|
style="@style/cardview_theme"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="12dp"
|
|
app:cardBackgroundColor="@color/two">
|
|
|
|
<AutoCompleteTextView
|
|
android:id="@+id/password_top"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="18dp"
|
|
android:layout_marginRight="18dp"
|
|
android:autofilledHighlight="@android:color/transparent"
|
|
android:ems="10"
|
|
android:hint="Enter Password"
|
|
android:importantForAutofill="yes"
|
|
android:inputType="textPassword"
|
|
android:maxLines="1"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:textColorHighlight="@color/three" />
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<androidx.cardview.widget.CardView
|
|
style="@style/cardview_theme"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="12dp"
|
|
app:cardBackgroundColor="@color/two">
|
|
|
|
<AutoCompleteTextView
|
|
android:id="@+id/password_bottom"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="18dp"
|
|
android:layout_marginRight="18dp"
|
|
android:autofilledHighlight="@android:color/transparent"
|
|
android:ems="10"
|
|
android:hint="Enter Password Again"
|
|
android:importantForAutofill="yes"
|
|
android:inputType="textPassword"
|
|
android:maxLines="1"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:textColorHighlight="@color/three" />
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/email_sign_up"
|
|
style="?android:attr/borderlessButtonStyle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_margin="12dp"
|
|
android:background="@drawable/cardviewoutline"
|
|
android:text="Sign Up"
|
|
android:textColor="#91ddff"
|
|
android:textStyle="bold" />
|
|
|
|
</RelativeLayout> |