Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 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. tools:context="com.example.ubunty.calc.MainActivity">
  8.  
  9. <EditText
  10. android:id="@+id/editText"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:ems="10"
  14. android:inputType="textPersonName"
  15. android:text="Name"
  16. tools:layout_editor_absoluteX="16dp"
  17. tools:layout_editor_absoluteY="16dp" />
  18.  
  19. <Button
  20. android:id="@+id/button3"
  21. android:layout_width="88dp"
  22. android:layout_height="48dp"
  23. android:text="Button"
  24. tools:layout_editor_absoluteX="244dp"
  25. tools:layout_editor_absoluteY="62dp" />
  26.  
  27. <Button
  28. android:id="@+id/button4"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. android:text="Button"
  32. tools:layout_editor_absoluteY="62dp"
  33. tools:layout_editor_absoluteX="80dp" />
  34.  
  35. <TextView
  36. android:id="@+id/textView"
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:text="TextView"
  40. tools:layout_editor_absoluteX="151dp"
  41. tools:layout_editor_absoluteY="196dp" />
  42. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement