Advertisement
raiol

Layout

Jul 23rd, 2019
455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.76 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    tools:context=".MainActivity">
  8.  
  9.     <Button
  10.        android:id="@+id/continuar"
  11.        android:layout_width="wrap_content"
  12.        android:layout_height="wrap_content"
  13.        android:text="Continuar"
  14.        tools:layout_editor_absoluteX="154dp"
  15.        tools:layout_editor_absoluteY="556dp" />
  16.  
  17.     <TextView
  18.        android:id="@+id/textoTituloApp"
  19.        android:layout_width="257dp"
  20.        android:layout_height="71dp"
  21.        android:text="Pastebin Dump"
  22.        android:textColor="#383030"
  23.        android:textSize="36sp"
  24.        android:textStyle="bold"
  25.        tools:layout_editor_absoluteX="77dp"
  26.        tools:layout_editor_absoluteY="78dp" />
  27.  
  28.     <EditText
  29.        android:id="@+id/textoUrlPastebin"
  30.        android:layout_width="wrap_content"
  31.        android:layout_height="wrap_content"
  32.        android:ems="10"
  33.        android:hint="Url ou ID"
  34.        android:inputType="textPostalAddress"
  35.        tools:layout_editor_absoluteX="98dp"
  36.        tools:layout_editor_absoluteY="497dp" />
  37.  
  38.     <EditText
  39.        android:id="@+id/caixaResultado"
  40.        android:layout_width="347dp"
  41.        android:layout_height="237dp"
  42.        android:ems="10"
  43.        android:gravity="center"
  44.        android:hint="Aguardando..."
  45.        android:inputType="textPersonName"
  46.        tools:layout_editor_absoluteX="32dp"
  47.        tools:layout_editor_absoluteY="224dp" />
  48. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement