Gruppe 1
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

activity_main.xml 1.2KB

1234567891011121314151617181920212223242526272829
  1. <?xml version = "1.0" encoding = "utf-8"?>
  2. <RelativeLayout xmlns:android = "http://schemas.android.com/apk/res/android"
  3. xmlns:tools = "http://schemas.android.com/tools"
  4. android:layout_width = "match_parent"
  5. android:layout_height = "match_parent"
  6. android:layout_margin = "16dp"
  7. tools:context = ".MainActivity">
  8. <TextView
  9. android:id = "@+id/tvConnectionInfos"
  10. android:layout_width = "match_parent"
  11. android:layout_height = "wrap_content"
  12. android:inputType = "textMultiLine"
  13. android:textAppearance = "@style/Base.TextAppearance.AppCompat.Medium" />
  14. <TextView
  15. android:id = "@+id/tvMessages"
  16. android:layout_width = "match_parent"
  17. android:layout_height = "wrap_content"
  18. android:layout_below="@id/tvConnectionInfos"
  19. android:inputType = "textMultiLine"
  20. android:textAppearance = "@style/Base.TextAppearance.AppCompat.Medium" />
  21. <Button
  22. android:id="@+id/btnSend"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_below="@id/tvMessages"
  26. android:layout_centerHorizontal="true"
  27. android:text="SEND" />
  28. </RelativeLayout>