1
|
<?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
|
android:text="-"
|
13
|
android:textSize="24sp" />
|
14
|
|
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
|
android:textSize="36sp" />
|
22
|
|
23
|
<Button
|
24
|
android:id="@+id/buttonMore"
|
25
|
android:layout_width="0sp"
|
26
|
android:layout_height="match_parent"
|
27
|
android:layout_weight="1"
|
28
|
android:text="+"
|
29
|
android:textSize="24sp" />
|
30
|
</LinearLayout>
|