mirror of
https://github.com/Team4388/RidgeScout.git
synced 2026-06-08 16:28:00 -06:00
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<?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"
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline6"
|
|
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:text="0"
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline6"
|
|
android:textSize="24sp" />
|
|
|
|
<Button
|
|
android:id="@+id/plus_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline6"
|
|
android:text="+" />
|
|
|
|
</LinearLayout> |