lmw
2023-06-21 bd6a8872438a35d47821c5d5da7fe149e5fed3ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <com.facebook.drawee.view.SimpleDraweeView
        android:id="@+id/image"
        android:layout_width="80dp"
        android:layout_height="80dp"
        app:actualImageScaleType="centerCrop"
        app:failureImage="@mipmap/default_error"
        app:placeholderImage="@mipmap/default_error"
        app:viewAspectRatio="1.0" />
</RelativeLayout>