lmw
2023-05-12 f67802a41f9e01444d1115f34ecc6e1beb05fc3b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?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:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <com.facebook.drawee.view.SimpleDraweeView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/imageView"
        style="@style/DefaultImageStyle"
        app:viewAspectRatio="1"/>
    <TextView
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_margin="8dp"
        android:text=""
        android:textSize="@dimen/smallTextSize"
        android:textColor="@color/white"
        android:gravity="center"
        android:background="@drawable/ic_select_photo_selector"
        android:id="@+id/action_state"
        android:layout_alignParentRight="true"/>
</RelativeLayout>