Advertisement
AleOlivera

layout_Dialog.xml

Oct 1st, 2022
998
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.72 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.    android:padding="16dp">
  6.  
  7.     <EditText
  8.        android:id="@+id/etMatricula"
  9.        android:hint="Matricula"
  10.        android:layout_width="match_parent"
  11.        android:layout_height="wrap_content"/>
  12.     <EditText
  13.        android:id="@+id/etMinutos"
  14.        android:hint="Minutos"
  15.        android:layout_width="match_parent"
  16.        android:layout_height="wrap_content"
  17.        android:inputType="number"
  18.        android:layout_below="@id/etMatricula"
  19.        android:layout_alignParentStart="true"/>
  20.  
  21. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement