summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/activity_main.xml45
1 files changed, 45 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..0d2776a
--- /dev/null
+++ b/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,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> \ No newline at end of file