Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.92 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.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.    android:paddingBottom="16dp"
  8.    android:orientation="vertical"
  9.    android:paddingLeft="16dp"
  10.    android:paddingRight="16dp"
  11.    android:paddingTop="16dp"
  12.    tools:context="com.mloubakehotmail.cronometrocomcontadorregressivo.TerceiraActivity"
  13.    tools:layout_editor_absoluteY="81dp"
  14.    tools:layout_editor_absoluteX="0dp">
  15.  
  16.  
  17.     <EditText
  18.        android:layout_width="0dp"
  19.        android:layout_height="wrap_content"
  20.        android:ems="10"
  21.        android:hint="seconds"
  22.        android:id="@+id/editText"
  23.        android:inputType="numberDecimal"
  24.        android:layout_marginTop="29dp"
  25.        app:layout_constraintLeft_toLeftOf="parent"
  26.        app:layout_constraintTop_toTopOf="parent"
  27.        app:layout_constraintRight_toRightOf="parent" />
  28.  
  29.     <Button
  30.        android:text="START"
  31.        android:layout_width="336dp"
  32.        android:layout_height="wrap_content"
  33.        android:id="@+id/button"
  34.        tools:layout_editor_absoluteY="250dp"
  35.        app:layout_constraintLeft_toLeftOf="parent"
  36.        app:layout_constraintRight_toRightOf="parent" />
  37.  
  38.     <TextView
  39.        android:gravity="center"
  40.        android:textSize="32dp"
  41.        android:text=""
  42.        android:layout_width="219dp"
  43.        android:layout_height="103dp"
  44.        android:layout_below="@+id/editText"
  45.        android:id="@+id/textView"
  46.        tools:layout_editor_absoluteY="116dp"
  47.        app:layout_constraintLeft_toLeftOf="parent"
  48.        app:layout_constraintRight_toRightOf="parent"
  49.        app:layout_constraintHorizontal_bias="0.503" />
  50.  
  51. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement