main_list_item.xml 771 B

1234567891011121314151617
  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="match_parent"
  5. android:layout_height="wrap_content">
  6. <TextView
  7. android:id="@+id/main_label"
  8. android:layout_width="0dp"
  9. android:layout_height="wrap_content"
  10. android:layout_margin="@dimen/_10sdp"
  11. android:textSize="@dimen/_26ssp"
  12. app:layout_constraintBottom_toBottomOf="parent"
  13. app:layout_constraintEnd_toEndOf="parent"
  14. app:layout_constraintStart_toStartOf="parent"
  15. app:layout_constraintTop_toTopOf="parent" />
  16. </androidx.constraintlayout.widget.ConstraintLayout>