You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
3.7 KiB
120 lines
3.7 KiB
12 years ago
|
<?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="Choose a demo to start:"
|
||
|
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="Find:"
|
||
|
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="Enter a Filter"
|
||
|
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="OK"
|
||
|
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="Cancel"
|
||
|
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>
|