xref: /aosp_15_r20/external/clpeak/android/app/src/main/res/layout-v21/result_display.xml (revision 1cd03ba3888297bc945f2c84574e105e3ced3e34)
1<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2    android:id="@+id/RelativeLayout1"
3    android:layout_width="fill_parent"
4    android:layout_height="fill_parent" >
5
6    <LinearLayout
7        android:id="@+id/top_linear_layout"
8        android:layout_width="fill_parent"
9        android:layout_height="wrap_content"
10        android:layout_alignParentTop="true"
11        android:background="@android:color/darker_gray"
12        android:gravity="center_horizontal|center"
13        android:paddingBottom="8dp"
14        android:paddingTop="8dp" >
15
16        <CheckedTextView
17            android:id="@+id/text_opencl_platform"
18            android:layout_width="wrap_content"
19            android:layout_height="wrap_content"
20            android:text="@string/platform_checked_text"
21            android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium" />
22
23        <Spinner
24            android:id="@+id/spinner_platform_list"
25            android:layout_width="wrap_content"
26            android:layout_height="wrap_content"
27            android:gravity="center_vertical|center"
28            android:layout_toRightOf="@+id/text_opencl_platform" />
29    </LinearLayout>
30
31    <ScrollView
32        android:id="@+id/textAreaScroller_1"
33        android:layout_width="fill_parent"
34        android:layout_height="wrap_content"
35        android:layout_above="@+id/bottom_relative_layout"
36        android:layout_below="@+id/top_linear_layout"
37        android:scrollbarStyle="insideInset"
38        android:scrollbars="vertical"
39        style="@android:style/Widget.DeviceDefault.Light.ScrollView" >
40
41        <TextView
42            android:id="@+id/clpeak_result_textview"
43            android:layout_width="wrap_content"
44            android:layout_height="wrap_content"
45            android:textIsSelectable="true"
46            android:paddingBottom="8dp"
47            android:paddingTop="8dp"
48            android:textAppearance="?android:attr/textAppearance"
49            android:textColor="#25383C" />
50    </ScrollView>
51
52    <RelativeLayout
53        android:id="@+id/bottom_relative_layout"
54        android:layout_width="fill_parent"
55        android:layout_height="wrap_content"
56        android:layout_alignParentBottom="true"
57        android:background="@android:color/darker_gray"
58        android:gravity="center"
59        android:paddingLeft="50dp"
60        android:paddingRight="50dp"
61        android:paddingBottom="4dp"
62        android:paddingTop="4dp" >
63
64        <Button
65            android:id="@+id/run_button"
66            android:layout_width="match_parent"
67            android:layout_height="wrap_content"
68            android:layout_alignParentTop="true"
69            android:text="@string/run_button_text" />
70
71    </RelativeLayout>
72
73</RelativeLayout>
74