content_main.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. app:layout_behavior="@string/appbar_scrolling_view_behavior"
  8. tools:context=".MainActivity"
  9. tools:showIn="@layout/activity_main">
  10. <TextView
  11. android:id="@+id/setupStatusTextView"
  12. android:layout_width="262dp"
  13. android:layout_height="70dp"
  14. android:layout_marginBottom="24dp"
  15. android:layout_marginEnd="8dp"
  16. android:layout_marginStart="8dp"
  17. android:layout_marginTop="8dp"
  18. android:text=""
  19. app:layout_constraintBottom_toTopOf="@+id/setupConnectionButton"
  20. app:layout_constraintEnd_toEndOf="parent"
  21. app:layout_constraintStart_toStartOf="parent"
  22. app:layout_constraintTop_toTopOf="parent"
  23. app:layout_constraintVertical_bias="0.648" />
  24. <Button
  25. android:id="@+id/setupConnectionButton"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:layout_marginBottom="340dp"
  29. android:layout_marginEnd="8dp"
  30. android:layout_marginStart="8dp"
  31. android:text="@string/trilium_connection_settings"
  32. app:layout_constraintBottom_toBottomOf="parent"
  33. app:layout_constraintEnd_toEndOf="parent"
  34. app:layout_constraintStart_toStartOf="parent" />
  35. </android.support.constraint.ConstraintLayout>