|
|
@@ -0,0 +1,66 @@
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
+ android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
+ android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
+ android:paddingTop="@dimen/activity_vertical_margin"
|
|
|
+ tools:context=".CargoTrackingActivity" >
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/textView2"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="Search by"
|
|
|
+ android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:id="@+id/radioGroup1"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content" >
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radio0"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:checked="true"
|
|
|
+ android:text="H_BOL" />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radio1"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="Container#" />
|
|
|
+ </RadioGroup>
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/et_criterion"
|
|
|
+ android:layout_width="fill_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:hint="@string/prompt_search_criterion" >
|
|
|
+
|
|
|
+ <requestFocus />
|
|
|
+ </EditText>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content" >
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/btn_cancel"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="Cancel" />
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/btn_search"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:text="Search" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</LinearLayout>
|