Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView
  3.     android:id="@+id/sign_in_SW"
  4.     xmlns:android="http://schemas.android.com/apk/res/android"
  5.     xmlns:app="http://schemas.android.com/apk/res-auto"
  6.     xmlns:tools="http://schemas.android.com/tools"
  7.  
  8.     android:layout_width="match_parent"
  9.  
  10.     android:layout_height="match_parent"
  11.     tools:context="com.example.black.meeting.LoginActivity"
  12.     >
  13.  
  14.     <LinearLayout
  15.         android:id="@+id/sign_in_LL"
  16.         android:layout_width="match_parent"
  17.         android:layout_height="wrap_content"
  18.         android:orientation="vertical"
  19.         tools:layout_editor_absoluteX="8dp"
  20.         tools:layout_editor_absoluteY="0dp">
  21.  
  22.         <ImageView
  23.             android:id="@+id/logo_IV_reg"
  24.             android:layout_width="match_parent"
  25.             android:layout_height="250dp"
  26.             app:layout_constraintBottom_toTopOf="@+id/scrollView2"
  27.             app:layout_constraintHorizontal_bias="0.49"
  28.             app:layout_constraintLeft_toLeftOf="parent"
  29.             app:layout_constraintRight_toRightOf="parent"
  30.             app:layout_constraintTop_toTopOf="parent"
  31.             app:layout_constraintVertical_bias="0.14999998"
  32.             app:srcCompat="@drawable/meapp" />
  33.  
  34.         <android.support.design.widget.TextInputLayout
  35.             android:id="@+id/Email_TIL"
  36.             android:layout_width="match_parent"
  37.             android:layout_height="match_parent"
  38.             android:hint="Email">
  39.  
  40.             <EditText
  41.                 android:id="@+id/Email_ET"
  42.                 android:layout_width="match_parent"
  43.                 android:layout_height="wrap_content"
  44.                 android:hint="Email"
  45.                 android:inputType="textEmailAddress"
  46.                 android:textColor="@android:color/background_light"
  47.                 android:textColorHint="@android:color/darker_gray"
  48.                 tools:layout_editor_absoluteX="8dp"
  49.                 tools:layout_editor_absoluteY="-88dp" />
  50.         </android.support.design.widget.TextInputLayout>
  51.  
  52.         <android.support.design.widget.TextInputLayout
  53.             android:id="@+id/Password_TIL"
  54.             android:layout_width="match_parent"
  55.             android:layout_height="match_parent"
  56.             android:hint="Пароль">
  57.  
  58.             <EditText
  59.                 android:id="@+id/Password_ET"
  60.                 android:layout_width="match_parent"
  61.                 android:layout_height="wrap_content"
  62.                 android:hint="Пароль"
  63.                 android:inputType="textPassword"
  64.                 android:textColor="@android:color/background_light"
  65.                 android:textColorHint="@android:color/darker_gray" />
  66.  
  67.         </android.support.design.widget.TextInputLayout>
  68.  
  69.         <Button
  70.             android:id="@+id/button_sign_in"
  71.             style="@style/Widget.AppCompat.Button.Borderless.Colored"
  72.             android:layout_width="match_parent"
  73.             android:layout_height="wrap_content"
  74.             android:layout_weight="1"
  75.             android:text="Вход"
  76.             android:textAllCaps="false"
  77.             android:textSize="18sp"
  78.             android:typeface="sans" />
  79.  
  80.         <Button
  81.             android:id="@+id/button_registration"
  82.             style="@style/Widget.AppCompat.Button.Borderless.Colored"
  83.             android:layout_width="match_parent"
  84.             android:layout_height="wrap_content"
  85.             android:onClick="gobacktosignin"
  86.             android:text="Регистрация"
  87.             android:textAllCaps="false"
  88.             android:textSize="18sp" />
  89.  
  90.     </LinearLayout>
  91. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement