mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-01-02 20:11:22 +00:00
59 lines
2.0 KiB
XML
59 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="com.example.ian.titanscout.MainActivity">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="20dp"
|
|
android:orientation="vertical">
|
|
|
|
|
|
<EditText
|
|
android:id="@+id/editText"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:hint="Enter Text Here" />
|
|
|
|
<Button
|
|
android:id="@+id/button"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_below="@+id/editText"
|
|
android:text="Click Here TO generate qr code"
|
|
android:textAllCaps="false"
|
|
android:textSize="16sp" />
|
|
|
|
|
|
<Button
|
|
android:id="@+id/btnScan"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_below="@+id/editText"
|
|
android:text="Scan Your QR Code"
|
|
android:textAllCaps="false"
|
|
android:textSize="16sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_qr_readTxt"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="200dp"
|
|
android:layout_below="@+id/button"
|
|
android:src="@android:drawable/ic_dialog_email" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|