item_pk_seat.xml 868 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="36dp"
  4. android:layout_height="36dp"
  5. xmlns:app="http://schemas.android.com/apk/res-auto">
  6. <de.hdodenhof.circleimageview.CircleImageView
  7. android:layout_margin="4dp"
  8. android:id="@+id/ivAvatar"
  9. app:civ_border_width="2dp"
  10. app:civ_border_color="#F8DC93"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"/>
  13. <ImageView
  14. android:id="@+id/ivPosition"
  15. app:layout_constraintEnd_toEndOf="@+id/ivAvatar"
  16. app:layout_constraintBottom_toBottomOf="parent"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"/>
  19. </androidx.constraintlayout.widget.ConstraintLayout>