1 |
f548942f
|
Leszek Koltunski
|
<?xml version="1.0" encoding="utf-8"?>
|
2 |
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
3 |
|
|
android:layout_width="match_parent"
|
4 |
|
|
android:layout_height="match_parent"
|
5 |
|
|
android:orientation="horizontal">
|
6 |
|
|
|
7 |
|
|
<Button
|
8 |
|
|
android:id="@+id/buttonLess"
|
9 |
|
|
android:layout_width="0sp"
|
10 |
|
|
android:layout_height="match_parent"
|
11 |
|
|
android:layout_weight="1"
|
12 |
f647630d
|
Leszek Koltunski
|
android:text="-"
|
13 |
a7a7cc9c
|
Leszek Koltunski
|
android:textSize="24sp" />
|
14 |
f548942f
|
Leszek Koltunski
|
|
15 |
|
|
<TextView
|
16 |
|
|
android:id="@+id/textNumber"
|
17 |
|
|
android:layout_width="0sp"
|
18 |
|
|
android:layout_height="match_parent"
|
19 |
|
|
android:layout_weight="1"
|
20 |
|
|
android:textAlignment="center"
|
21 |
a7a7cc9c
|
Leszek Koltunski
|
android:textSize="36sp" />
|
22 |
f548942f
|
Leszek Koltunski
|
|
23 |
|
|
<Button
|
24 |
|
|
android:id="@+id/buttonMore"
|
25 |
|
|
android:layout_width="0sp"
|
26 |
|
|
android:layout_height="match_parent"
|
27 |
|
|
android:layout_weight="1"
|
28 |
f647630d
|
Leszek Koltunski
|
android:text="+"
|
29 |
a7a7cc9c
|
Leszek Koltunski
|
android:textSize="24sp" />
|
30 |
f548942f
|
Leszek Koltunski
|
</LinearLayout>
|