Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".presentation.pages.account.resetPassword.ResetPasswordFragment" android:padding="16dp" android:clickable="true" android:focusable="true" android:focusableInTouchMode="true">
  2. <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintBottom_toBottomOf="parent" android:orientation="vertical">
  3. <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="email" android:id="@+id/email"/>
  4. <Button android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/resetPassword" android:text="Resetuj"/>
  5. </LinearLayout>
  6. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement