summaryrefslogtreecommitdiff
path: root/android/android_studio_project/app/src/main/res/layout/activity_launcher.xml
blob: 15c5c3cc6fc5ca4f713f14aa21cf2efd8fcec74d (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<ScrollView 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"
    tools:context="jp.xenia.emulator.LauncherActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:onClick="onLaunchGpuTraceViewerClick"
            android:text="@string/activity_label_gpu_trace_viewer" />

        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:onClick="onLaunchWindowDemoClick"
            android:text="@string/activity_label_window_demo" />

    </LinearLayout>

</ScrollView>