2018-01-23 15:18:55 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2018-01-23 15:18:55 -05:00
|
|
|
android:id="@+id/btn_decrease_10"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-11 19:08:57 -04:00
|
|
|
android:background="@drawable/list_item_selector"
|
2018-01-23 15:18:55 -05:00
|
|
|
android:padding="8dp"
|
|
|
|
android:tint="?colorAccent"
|
|
|
|
app:srcCompat="@drawable/ic_chevron_left_double_black_24dp" />
|
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2018-01-23 15:18:55 -05:00
|
|
|
android:id="@+id/btn_decrease"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-11 19:08:57 -04:00
|
|
|
android:background="@drawable/list_item_selector"
|
2018-01-23 15:18:55 -05:00
|
|
|
android:padding="8dp"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:tint="?colorAccent"
|
2018-01-23 15:18:55 -05:00
|
|
|
app:srcCompat="@drawable/ic_chevron_left_black_24dp" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/myNumber"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-01-23 15:18:55 -05:00
|
|
|
android:digits="0123456789"
|
|
|
|
android:inputType="number"
|
|
|
|
android:padding="8dp"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:textStyle="bold" />
|
2018-01-23 15:18:55 -05:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2018-01-23 15:18:55 -05:00
|
|
|
android:id="@+id/btn_increase"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-11 19:08:57 -04:00
|
|
|
android:background="@drawable/list_item_selector"
|
2018-01-23 15:18:55 -05:00
|
|
|
android:padding="8dp"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:tint="?colorAccent"
|
2018-01-23 15:18:55 -05:00
|
|
|
app:srcCompat="@drawable/ic_chevron_right_black_24dp" />
|
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
2018-01-23 15:18:55 -05:00
|
|
|
android:id="@+id/btn_increase_10"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-11 19:08:57 -04:00
|
|
|
android:background="@drawable/list_item_selector"
|
2018-01-23 15:18:55 -05:00
|
|
|
android:padding="8dp"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:tint="?colorAccent"
|
2018-01-23 15:18:55 -05:00
|
|
|
app:srcCompat="@drawable/ic_chevron_right_double_black_24dp" />
|
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</LinearLayout>
|