aboutsummaryrefslogtreecommitdiff
path: root/android/WALT/app/src/main/res/layout/fragment_audio.xml
blob: 190f6587d450851dae882bf68ef95615bf23f134 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:walt="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="org.chromium.latency.walt.TapLatencyFragment">

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

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <ImageButton
                android:id="@+id/button_stop_audio"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentStart="true"
                android:tint="@color/button_tint"
                walt:srcCompat="@drawable/ic_stop_black_24dp"
                android:contentDescription="@string/stop" />

            <ImageButton
                android:id="@+id/button_start_audio"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:tint="@color/button_tint"
                walt:srcCompat="@drawable/ic_play_arrow_black_24dp"
                android:contentDescription="@string/start" />

            <Spinner
                android:id="@+id/spinner_audio_mode"
                android:layout_height="45dp"
                android:layout_width="fill_parent"
                android:layout_toEndOf="@id/button_stop_audio"
                android:layout_toStartOf="@id/button_start_audio"
                android:prompt="@string/audio_mode"/>

        </RelativeLayout>

        <include
            android:id="@+id/chart_layout"
            layout="@layout/line_chart" />

        <org.chromium.latency.walt.HistogramChart
            android:id="@+id/latency_chart"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:visibility="gone"
            walt:description="Latency [ms]"
            walt:binWidth="0.1" />

        <!-- For now the results are just listed in this textView -->
        <TextView
            android:id="@+id/txt_box_audio"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="2"
            android:background="#aaaaaa"
            android:gravity="bottom"
            android:scrollbars="vertical" />

    </LinearLayout>
</FrameLayout>