forked from G00fY2/quickie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivity_main.xml
29 lines (25 loc) · 862 Bytes
/
activity_main.xml
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
<?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:gravity="center"
android:orientation="vertical"
tools:context=".MainActivity"
>
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="136dp"
android:gravity="center"
android:text="@string/title"/>
<Button
android:id="@+id/qr_scanner_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:layout_marginEnd="64dp"
android:layout_marginStart="64dp"
android:text="@string/qr_button"
/>
</LinearLayout>