mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 08:40:00 +00:00
49 lines
2 KiB
XML
49 lines
2 KiB
XML
|
|
<?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"
|
||
|
|
android:background="@color/gray_700"
|
||
|
|
android:layout_alignParentBottom="true"
|
||
|
|
android:layout_alignParentStart="true"/>
|
||
|
|
<View android:layout_width="match_parent"
|
||
|
|
android:layout_height="2dp"
|
||
|
|
android:background="@color/gray_500"
|
||
|
|
android:layout_alignParentBottom="true"
|
||
|
|
android:layout_alignParentStart="true"/>
|
||
|
|
<ImageButton
|
||
|
|
android:id="@+id/up_button"
|
||
|
|
android:layout_width="56dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/gray_600"
|
||
|
|
android:src="@drawable/ic_arrow_drop_up_gray_48dp"
|
||
|
|
android:layout_alignParentStart="true"
|
||
|
|
android:layout_alignParentTop="true"
|
||
|
|
/>
|
||
|
|
<ImageButton
|
||
|
|
android:id="@+id/down_button"
|
||
|
|
android:layout_width="56dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/gray_600"
|
||
|
|
android:src="@drawable/ic_arrow_drop_down_gray_48dp_states"
|
||
|
|
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"
|
||
|
|
android:textColor="@color/gray_100"
|
||
|
|
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>
|