Newer
Older
IrisClient / app / src / main / res / layout / activity_drawing.xml
  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=".DrawingActivity">
  8.  
  9. <Button
  10. android:id="@+id/okButtton"
  11. android:layout_width="87dp"
  12. android:layout_height="48dp"
  13. android:text="OK"
  14. tools:layout_editor_absoluteX="64dp"
  15. tools:layout_editor_absoluteY="347dp" />
  16.  
  17. <Button
  18. android:id="@+id/clearButton"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:text="clear"
  22. tools:layout_editor_absoluteX="62dp"
  23. tools:layout_editor_absoluteY="280dp" />
  24.  
  25. <TextView
  26. android:id="@+id/testText"
  27. android:layout_width="79dp"
  28. android:layout_height="45dp"
  29. android:text="test"
  30. tools:layout_editor_absoluteX="72dp"
  31. tools:layout_editor_absoluteY="16dp" />
  32.  
  33. <TextView
  34. android:id="@+id/textView4"
  35. android:layout_width="95dp"
  36. android:layout_height="51dp"
  37. android:text="time"
  38. tools:layout_editor_absoluteX="620dp"
  39. tools:layout_editor_absoluteY="16dp" />
  40.  
  41. <TextView
  42. android:id="@+id/textKeyword"
  43. android:layout_width="375dp"
  44. android:layout_height="50dp"
  45. android:text="keyword"
  46. tools:layout_editor_absoluteX="234dp"
  47. tools:layout_editor_absoluteY="16dp" />
  48.  
  49. <androidx.constraintlayout.widget.ConstraintLayout
  50. android:id="@+id/canvas"
  51. android:layout_width="482dp"
  52. android:layout_height="312dp"
  53. tools:layout_editor_absoluteX="234dp"
  54. tools:layout_editor_absoluteY="79dp">
  55.  
  56. </androidx.constraintlayout.widget.ConstraintLayout>
  57.  
  58. </androidx.constraintlayout.widget.ConstraintLayout>