summaryrefslogtreecommitdiffstats
path: root/res/layout/main.xml
blob: 77a5ad5f845d0038b1d3a300bbebefc16ae52be5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:gravity="center"
              android:layout_margin="20dp"
              android:layout_width="match_parent"
              android:layout_height="match_parent">

    <TextView
            style="@android:style/TextAppearance.Medium"
            android:gravity="center"
            android:text="@string/start_description"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

    <Button
            android:id="@+id/start_screencast"
            android:layout_marginTop="20dp"
            android:text="@string/start_screencast"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
</LinearLayout>