Created
October 14, 2025 10:31
-
-
Save sunmeat/be05f2f8136bdab3a45fac5a7849da91 to your computer and use it in GitHub Desktop.
frame layout example android
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:background="#FF5722"> | |
<View | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:background="#80000000" /> | |
<ImageView | |
android:layout_width="120dp" | |
android:layout_height="120dp" | |
android:layout_gravity="center_horizontal|top" | |
android:layout_marginTop="80dp" | |
android:elevation="8dp" | |
android:src="@android:drawable/ic_menu_gallery" | |
android:tint="#FFFFFF" /> | |
<TextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_gravity="center_horizontal" | |
android:layout_marginTop="220dp" | |
android:fontFamily="sans-serif-medium" | |
android:text="Ласкаво просимо!" | |
android:textColor="#FFFFFF" | |
android:textSize="24sp" | |
android:textStyle="bold" /> | |
<TextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_gravity="center_horizontal" | |
android:layout_marginTop="260dp" | |
android:fontFamily="sans-serif" | |
android:text="Увійдіть у свій акаунт" | |
android:textColor="#E0E0E0" | |
android:textSize="16sp" /> | |
<EditText | |
android:id="@+id/edit_email" | |
android:layout_width="match_parent" | |
android:layout_height="48dp" | |
android:layout_gravity="center_horizontal|top" | |
android:layout_marginStart="32dp" | |
android:layout_marginTop="320dp" | |
android:layout_marginEnd="32dp" | |
android:background="#FFFFFF" | |
android:elevation="4dp" | |
android:hint="Email" | |
android:inputType="textEmailAddress" | |
android:paddingStart="16dp" | |
android:paddingEnd="16dp" | |
android:textColor="#212121" | |
android:textColorHint="#BDBDBE" | |
android:textSize="16sp" /> | |
<EditText | |
android:id="@+id/edit_password" | |
android:layout_width="match_parent" | |
android:layout_height="48dp" | |
android:layout_gravity="center_horizontal|top" | |
android:layout_marginStart="32dp" | |
android:layout_marginTop="380dp" | |
android:layout_marginEnd="32dp" | |
android:background="#FFFFFF" | |
android:elevation="4dp" | |
android:hint="Пароль" | |
android:inputType="textPassword" | |
android:paddingStart="16dp" | |
android:paddingEnd="16dp" | |
android:textColor="#212121" | |
android:textColorHint="#BDBDBE" | |
android:textSize="16sp" /> | |
<Button | |
android:id="@+id/btn_login" | |
android:layout_width="match_parent" | |
android:layout_height="48dp" | |
android:layout_gravity="center_horizontal|bottom" | |
android:layout_marginStart="32dp" | |
android:layout_marginEnd="32dp" | |
android:layout_marginBottom="80dp" | |
android:background="#2196F3" | |
android:elevation="4dp" | |
android:text="Увійти" | |
android:textColor="#FFFFFF" | |
android:textSize="16sp" | |
android:textStyle="bold" /> | |
<TextView | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:layout_gravity="center_horizontal|bottom" | |
android:layout_marginBottom="32dp" | |
android:background="?android:attr/selectableItemBackground" | |
android:clickable="true" | |
android:focusable="true" | |
android:text="Немає акаунту? Зареєструйтеся" | |
android:textColor="#E0E0E0" | |
android:textSize="14sp" /> | |
</FrameLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment