Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
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.

25 lines
1.2 KiB

  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. android:layout_width="wrap_content"
  5. android:layout_height="?android:attr/listPreferredItemHeightSmall"
  6. android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
  7. android:paddingStart="?android:attr/listPreferredItemPaddingStart">
  8. <TextView
  9. android:id="@android:id/text1"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:text="Name"
  13. android:textAppearance="@style/TextAppearance.AppCompat.Medium"
  14. app:layout_constraintStart_toStartOf="parent"
  15. app:layout_constraintTop_toTopOf="parent" />
  16. <TextView
  17. android:id="@android:id/text2"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:text="Email"
  21. android:textAppearance="@style/TextAppearance.AppCompat.Small"
  22. app:layout_constraintStart_toStartOf="parent"
  23. app:layout_constraintTop_toBottomOf="@android:id/text1" />
  24. </androidx.constraintlayout.widget.ConstraintLayout>