mirror of
https://github.com/Aviortheking/Neo-Store.git
synced 2025-04-30 14:52:13 +00:00
134 lines
6.0 KiB
XML
134 lines
6.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<data>
|
|
|
|
</data>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:animateLayoutChanges="true">
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:id="@android:id/list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:fillViewport="true">
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="12dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingBottom="12dp">
|
|
|
|
<com.google.android.material.circularreveal.CircularRevealFrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/address"
|
|
android:paddingVertical="12dp">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/address"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
android:id="@+id/address_mirror"
|
|
android:layout_width="36dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="end"
|
|
android:background="?android:attr/actionBarItemBackground"
|
|
android:scaleType="center"
|
|
android:src="@drawable/ic_arrow_down"
|
|
android:tint="?android:attr/textColorSecondary"
|
|
android:tintMode="src_in"
|
|
android:visibility="gone"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
</com.google.android.material.circularreveal.CircularRevealFrameLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/fingerprint"
|
|
android:paddingVertical="12dp">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/fingerprint"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/username"
|
|
android:paddingVertical="12dp">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/username"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/password"
|
|
android:paddingVertical="12dp">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/password"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:id="@+id/overlay"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?android:attr/colorBackground"
|
|
android:clickable="true"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
tools:ignore="KeyboardInaccessibleWidget">
|
|
|
|
<com.google.android.material.progressindicator.LinearProgressIndicator
|
|
style="@style/Theme.Progress"
|
|
android:layout_width="200dp"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:fontFamily="sans-serif-light"
|
|
android:text="@string/checking_repository"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="20sp" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/skip"
|
|
style="@android:style/Widget.Material.Button.Borderless.Colored"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:text="@string/skip" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
</FrameLayout>
|
|
</layout> |