1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/delete"
- android:layout_width="50dp"
- android:layout_height="40dp"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="16dp"
- android:alpha="0.5"
- android:paddingLeft="17dp"
- android:paddingRight="17dp"
- android:src="@mipmap/delete" />
- <TextView
- android:id="@+id/title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginTop="10dp"
- android:layout_marginBottom="10dp"
- android:text=""
- android:textColor="@color/gray_808080"
- android:textSize="16sp" />
- </androidx.appcompat.widget.LinearLayoutCompat>
|