Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context=".action.menu.LogFragment">
  7.  
  8. <android.support.constraint.ConstraintLayout android:layout_width="match_parent"
  9.  
  10. android:layout_height="match_parent">
  11.  
  12.  
  13. <Button
  14.  
  15. android:text="@string/change_server_address"
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:id="@+id/change_server" app:layout_constraintEnd_toEndOf="parent" android:layout_marginEnd="8dp"
  19. app:layout_constraintStart_toStartOf="parent" android:layout_marginStart="8dp"
  20. android:layout_marginTop="244dp" app:layout_constraintTop_toTopOf="parent"
  21. app:layout_constraintHorizontal_bias="1.0"/>
  22. <Button
  23. android:text="@string/start_log_position"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:id="@+id/log_position" android:layout_marginTop="8dp"
  27. app:layout_constraintTop_toBottomOf="@+id/change_server" app:layout_constraintEnd_toEndOf="parent"
  28. android:layout_marginEnd="8dp" app:layout_constraintStart_toStartOf="parent"
  29. android:layout_marginStart="8dp"/>
  30. <TextView
  31. android:text="TextView"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:id="@+id/textView"
  35. app:layout_constraintTop_toBottomOf="@+id/log_position" app:layout_constraintEnd_toEndOf="parent"
  36. android:layout_marginEnd="8dp" android:layout_marginStart="8dp"
  37. app:layout_constraintStart_toStartOf="parent" android:layout_marginBottom="8dp"
  38. app:layout_constraintBottom_toBottomOf="parent"/>
  39. </android.support.constraint.ConstraintLayout>
  40. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement