31 lines
938 B
XML
31 lines
938 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
orientation="vertical"
|
||
|
background="#f5f3f6"
|
||
|
paddingTop="8dp"
|
||
|
paddingBottom="8dp"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
paddingStart="16dp"
|
||
|
paddingEnd="16dp">
|
||
|
<ImageView
|
||
|
id="@+id/image_view_title"
|
||
|
visibility="gone"
|
||
|
layout_width="48dp"
|
||
|
layout_height="48dp"
|
||
|
layout_marginTop="8dp"
|
||
|
src="@drawable/ic_accent_edit"
|
||
|
scaleType="fitCenter"
|
||
|
layout_alignParentLeft="true"
|
||
|
layout_centerVertical="true"
|
||
|
layout_alignParentStart="true"/>
|
||
|
<TextView
|
||
|
id="@+id/text_view_description"
|
||
|
layout_width="wrap_content"
|
||
|
layout_height="wrap_content"
|
||
|
layout_marginTop="8dp"
|
||
|
text="Title"
|
||
|
layout_centerVertical="true"
|
||
|
style="@style/2132017875"/>
|
||
|
</LinearLayout>
|