2019-04-05 09:16:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="56dp"
|
|
|
|
|
tools:parentTag="android.widget.RelativeLayout">
|
|
|
|
|
<View android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@color/window_background"
|
2019-04-05 09:16:44 +00:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
|
android:layout_alignParentStart="true"/>
|
|
|
|
|
<View android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="2dp"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@color/content_background_offset"
|
2019-04-05 09:16:44 +00:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
|
android:layout_alignParentStart="true"/>
|
|
|
|
|
<ImageButton
|
2020-06-18 15:30:19 +00:00
|
|
|
android:id="@+id/down_button"
|
2019-04-05 09:16:44 +00:00
|
|
|
android:layout_width="56dp"
|
|
|
|
|
android:layout_height="match_parent"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@color/offset_background"
|
2020-06-18 15:30:19 +00:00
|
|
|
android:src="@drawable/ic_arrow_drop_down_gray_48dp_states"
|
2019-04-05 09:16:44 +00:00
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
|
/>
|
|
|
|
|
<ImageButton
|
2020-06-18 15:30:19 +00:00
|
|
|
android:id="@+id/up_button"
|
2019-04-05 09:16:44 +00:00
|
|
|
android:layout_width="56dp"
|
|
|
|
|
android:layout_height="match_parent"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@color/offset_background"
|
2020-06-18 15:30:19 +00:00
|
|
|
android:src="@drawable/ic_arrow_drop_up_gray_48dp_states"
|
2019-04-05 09:16:44 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
|
/>
|
|
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/edit_text"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
|
android:background="@color/transparent"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_secondary"
|
2019-04-05 09:16:44 +00:00
|
|
|
android:textSize="16sp"
|
|
|
|
|
tools:text="100.0"
|
|
|
|
|
android:inputType="numberDecimal"
|
|
|
|
|
android:drawablePadding="@dimen/spacing_medium"
|
|
|
|
|
android:paddingStart="@dimen/spacing_large"
|
|
|
|
|
android:paddingEnd="@dimen/spacing_large"/>
|
|
|
|
|
</merge>
|