Advertisement
Diaxon

Untitled

Oct 1st, 2023
1,003
0
121 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.57 KB | None | 0 0
  1. <LinearLayout
  2.    xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.    android:orientation="vertical"
  6.    android:background="#11000000"
  7.    android:gravity="center">
  8.  
  9.     <TextView
  10.        android:layout_width="wrap_content"
  11.        android:layout_height="wrap_content"
  12.        android:text="Podaj swój email"
  13.        android:textSize="24sp"
  14.        android:textColor="#ff0000"/>
  15.  
  16.     <EditText
  17.        android:id="@+id/emailEditText"
  18.        android:layout_width="wrap_content"
  19.        android:layout_height="wrap_content"
  20.        android:inputType="textEmailAddress"
  21.        android:gravity="center"
  22.        android:minWidth="200dp"
  23.        android:minHeight="48dp" />
  24.  
  25.  
  26.     <TextView
  27.        android:id="@+id/displayEmailTextView"
  28.        android:layout_width="wrap_content"
  29.        android:layout_height="wrap_content"
  30.        android:text="Twój adres e-mail to..."
  31.        android:labelFor="@id/emailEditText"
  32.        android:textSize="24sp"
  33.        android:textColor="#ff00ff"/>
  34.  
  35.     <Button
  36.        android:id="@+id/submit"
  37.        android:layout_width="wrap_content"
  38.        android:layout_height="wrap_content"
  39.        android:text="Zatwierdź swój adres e-mail"
  40.        android:onClick="onButtonClick"
  41.        android:gravity="center"/>
  42.  
  43.     <Button
  44.        android:id="@+id/button5"
  45.        android:layout_width="match_parent"
  46.        android:layout_height="wrap_content"
  47.        android:onClick="newView"
  48.        android:text="Button" />
  49. </LinearLayout>
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement