• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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:fontFamily="@font/ubuntu"
21            android:text="@string/platform_checked_text"
22            android:textAppearance="@android:style/TextAppearance.Material.Medium" />
23
24        <Spinner
25            android:id="@+id/spinner_platform_list"
26            android:layout_width="wrap_content"
27            android:layout_height="wrap_content"
28            android:gravity="center_vertical|center"
29            android:layout_toRightOf="@+id/text_opencl_platform" />
30    </LinearLayout>
31
32    <ScrollView
33        android:id="@+id/textAreaScroller_1"
34        android:layout_width="fill_parent"
35        android:layout_height="wrap_content"
36        android:layout_above="@+id/bottom_relative_layout"
37        android:layout_below="@+id/top_linear_layout"
38        android:scrollbarStyle="insideInset"
39        android:scrollbars="vertical" >
40
41        <TextView
42            android:id="@+id/clpeak_result_textview"
43            android:layout_width="wrap_content"
44            android:layout_height="wrap_content"
45            android:fontFamily="@font/ubuntu_medium"
46            android:textIsSelectable="true" />
47    </ScrollView>
48
49    <RelativeLayout
50        android:id="@+id/bottom_relative_layout"
51        android:layout_width="fill_parent"
52        android:layout_height="wrap_content"
53        android:layout_alignParentBottom="true"
54        android:background="@android:color/darker_gray"
55        android:gravity="center"
56        android:paddingLeft="50dp"
57        android:paddingRight="50dp"
58        android:paddingBottom="4dp"
59        android:paddingTop="4dp" >
60
61        <Button
62            android:id="@+id/run_button"
63            android:layout_width="match_parent"
64            android:layout_height="wrap_content"
65            android:layout_alignParentTop="true"
66            android:fontFamily="@font/ubuntu_bold"
67            android:text="Run" />
68
69    </RelativeLayout>
70
71</RelativeLayout>
72