summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/activity_main.xml
blob: 0d2776a52df9a201112823b170b437068a6067fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:textAlignment="center"
        android:textSize="30sp"
        android:textColor="#516060"
        android:layout_weight="4"
        android:text="Value for verification" />
    <Spinner
        android:layout_weight="4"
        android:id="@+id/spinner"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    <EditText
        android:id="@+id/txtInput"
        android:hint="Entry value"
        android:layout_weight="4"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
    <Button
        android:id="@+id/btnValidate"
        android:text="VALIDATE"
        android:layout_weight="4"
        android:textSize="30sp"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="2"
        android:gravity="center"
        android:textSize="30sp"
        android:textAlignment="center"
        android:id="@+id/txtOutput" />

</LinearLayout>