| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/layoutTestChooser"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#FFFFFF"
- >
- <TextView
- android:id="@+id/lblTitle"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true"
- android:layout_marginTop="10dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:text="@string/strLblTitle"
- android:textSize="20sp"
- android:textColor="#000000"
- />
- <LinearLayout
- android:id="@+id/layoutFilter"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/lblTitle"
- android:layout_marginBottom="10dp"
- android:layout_marginTop="10dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:orientation="horizontal"
- >
- <TextView
- android:id="@+id/lblFindTitle"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="10dp"
- android:text="@string/strLblFindTitle"
- android:textSize="20sp"
- android:textColor="#000000"
- />
- <EditText
- android:id="@+id/txtFilter"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:ems="10"
- android:hint="@string/strTxtFilterHint"
- android:inputType="text"
- android:textSize="20sp"
- android:textColor="#000000"
- />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/layoutButtons"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:gravity="center"
- android:layout_marginTop="20dp"
- android:focusable="true"
- android:focusableInTouchMode="true"
- >
- <Button
- android:id="@+id/btnOK"
- android:layout_width="100dp"
- android:layout_height="wrap_content"
- android:text="@string/strBtnOK"
- android:layout_marginRight="20dp"
- android:textSize="20sp"
- android:textColor="#000000"
- />
- <Button
- android:id="@+id/btnCancel"
- android:layout_width="100dp"
- android:layout_height="wrap_content"
- android:text="@string/strBtnCancel"
- android:layout_marginLeft="20dp"
- android:textSize="20sp"
- android:textColor="#000000"
- />
- <requestFocus/>
- </LinearLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_above="@id/layoutButtons"
- android:layout_below="@id/layoutFilter"
- android:gravity="center"
- android:background="@drawable/selected"
- >
- <ListView
- android:id="@+id/listClasses"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:choiceMode="singleChoice"
- android:listSelector="@drawable/selected"
- android:layout_marginTop="5dp"
- android:layout_marginBottom="5dp"
- android:scrollbars="vertical"
- android:fadeScrollbars="false"
- android:textFilterEnabled="true"
- >
- </ListView>
- </LinearLayout>
- </RelativeLayout>
|