aboutsummaryrefslogtreecommitdiff
path: root/apps/OboeTester/app/src/main/res/layout/activity_auto_glitches.xml
blob: a017668080f611a46665928e74f4bbc8e402707b (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.google.sample.oboe.manualtest.AutomatedGlitchActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/duration"
            />
        <Spinner
            android:id="@+id/spinner_glitch_duration"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:entries="@array/glitch_times"
            />
        <TextView
            android:id="@+id/actualNativeApi"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/seconds_per_test"
            />
    </LinearLayout>

    <com.google.sample.oboe.manualtest.AutomatedTestRunner
        android:id="@+id/auto_test_runner"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" />

</LinearLayout>