lmw
2025-04-24 718f31c92e2029d05260810435a2c70cef6e6ce5
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>