2024-07-29 22:29:59 -06:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/minus_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-03-07 11:17:02 -07:00
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline6"
|
2024-07-29 22:29:59 -06:00
|
|
|
android:text="-" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/count_display"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:textSize="24sp" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/plus_button"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-03-07 11:17:02 -07:00
|
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline6"
|
2024-07-29 22:29:59 -06:00
|
|
|
android:text="+" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|