22 lines
639 B
XML
22 lines
639 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
orientation="vertical"
|
|
id="@+id/spinner_container"
|
|
layout_width="match_parent"
|
|
layout_height="wrap_content">
|
|
<Spinner
|
|
layout_gravity="end"
|
|
id="@+id/spinner"
|
|
background="#ffffff"
|
|
layout_width="match_parent"
|
|
layout_height="0dp"
|
|
layout_weight="1"
|
|
spinnerMode="dropdown"
|
|
textAlignment="textEnd"/>
|
|
<View
|
|
id="@+id/bottom_bar"
|
|
background="#c9c6cd"
|
|
layout_width="match_parent"
|
|
layout_height="1dp"/>
|
|
</LinearLayout>
|