43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
orientation="vertical"
|
||
|
background="#ffffff"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
layout_marginStart="16dp"
|
||
|
layout_marginEnd="16dp">
|
||
|
<RelativeLayout
|
||
|
id="@+id/layoutSelectListContainer"
|
||
|
background="@drawable/bg_spinner"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="40dp"
|
||
|
layout_marginBottom="24dp">
|
||
|
<TextView
|
||
|
ellipsize="end"
|
||
|
gravity="center_vertical"
|
||
|
id="@+id/tvSelectList"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="wrap_content"
|
||
|
hint="@string/select_job_title"
|
||
|
lines="1"
|
||
|
layout_alignTop="@+id/ivArrow"
|
||
|
layout_marginStart="16dp"
|
||
|
layout_toStartOf="@+id/ivArrow"
|
||
|
style="@style/2132017836"/>
|
||
|
<ImageView
|
||
|
id="@+id/ivArrow"
|
||
|
layout_width="24dp"
|
||
|
layout_height="24dp"
|
||
|
src="@drawable/ic_chevron_right_white_18dp"
|
||
|
tint="#353239"
|
||
|
layout_alignParentRight="true"
|
||
|
layout_centerVertical="true"
|
||
|
layout_marginEnd="8dp"
|
||
|
layout_alignParentEnd="true"/>
|
||
|
</RelativeLayout>
|
||
|
<View
|
||
|
background="#eae7ec"
|
||
|
layout_width="match_parent"
|
||
|
layout_height="1dp"/>
|
||
|
</LinearLayout>
|