<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<com.facebook.drawee.view.SimpleDraweeView
|
android:layout_width="match_parent"
|
android:layout_height="172dp"
|
app:roundedCornerRadius="2dp"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:layout_marginHorizontal="14dp"
|
android:layout_marginTop="5dp"
|
android:layout_marginBottom="5dp"
|
app:actualImageScaleType="centerCrop"
|
android:id="@+id/iv_img"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|