12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="36dp"
- android:layout_height="36dp"
- xmlns:app="http://schemas.android.com/apk/res-auto">
- <de.hdodenhof.circleimageview.CircleImageView
- android:layout_margin="4dp"
- android:id="@+id/ivAvatar"
- app:civ_border_width="2dp"
- app:civ_border_color="#F8DC93"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- <ImageView
- android:id="@+id/ivPosition"
- app:layout_constraintEnd_toEndOf="@+id/ivAvatar"
- app:layout_constraintBottom_toBottomOf="parent"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- </androidx.constraintlayout.widget.ConstraintLayout>
|