|
@@ -4,16 +4,23 @@
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
android:orientation="vertical">
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
- <ListView
|
|
|
|
|
|
|
+ <com.handmark.pulltorefresh.library.PullToRefreshListView
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_ptlv"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"/>
|
|
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:divider="@color/gray_light"
|
|
|
|
|
+ android:dividerHeight="1dp"
|
|
|
|
|
+ android:layerType="software"
|
|
|
|
|
+ android:scrollingCache="false"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_fuzzy_ll"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
android:orientation="vertical">
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
<LinearLayout
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_history_ll"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
android:background="@color/white"
|
|
android:background="@color/white"
|
|
@@ -30,18 +37,20 @@
|
|
|
android:layout_width="0dp"
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_weight="1"
|
|
android:layout_weight="1"
|
|
|
- android:text="搜索历史"
|
|
|
|
|
|
|
+ android:text="@string/search_history"
|
|
|
android:textSize="16sp"/>
|
|
android:textSize="16sp"/>
|
|
|
|
|
|
|
|
<TextView
|
|
<TextView
|
|
|
|
|
+ android:id="@+id/data_inquiry_history_clear_tv"
|
|
|
android:layout_width="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
- android:text="清空"
|
|
|
|
|
|
|
+ android:text="@string/str_clear"
|
|
|
android:textColor="@color/LightBlue"
|
|
android:textColor="@color/LightBlue"
|
|
|
android:textSize="16sp"/>
|
|
android:textSize="16sp"/>
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<com.xzjmyk.pm.activity.view.MyListView
|
|
<com.xzjmyk.pm.activity.view.MyListView
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_history_data_lv"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
android:background="@color/white"/>
|
|
android:background="@color/white"/>
|
|
@@ -49,9 +58,97 @@
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
<View
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_fuzzy_bg"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:background="#20000000"
|
|
|
|
|
+ />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_exact_ll"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_option_ll"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="260dp"
|
|
|
|
|
+ android:background="@color/white"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <ScrollView
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="0dp"
|
|
|
|
|
+ android:layout_weight="1">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent">
|
|
|
|
|
+
|
|
|
|
|
+ <com.xzjmyk.pm.activity.view.MyListView
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_option_lv"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </ScrollView>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
|
+ android:paddingBottom="20dp"
|
|
|
|
|
+ android:paddingLeft="10dp"
|
|
|
|
|
+ android:paddingRight="10dp"
|
|
|
|
|
+ android:paddingTop="10dp">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_option_cancel_tv"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="35dp"
|
|
|
|
|
+ android:layout_marginLeft="30dp"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:background="@drawable/selector_cancel_bg"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:text="@string/cancel"
|
|
|
|
|
+ android:textColor="@color/selector_cancel_text_color"
|
|
|
|
|
+ android:textSize="14sp"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_option_reset_tv"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="35dp"
|
|
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
|
|
+ android:layout_marginRight="20dp"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:background="@drawable/selector_confirm_bg"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:text="@string/reset"
|
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
|
+ android:textSize="14sp"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_option_confirm_tv"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="35dp"
|
|
|
|
|
+ android:layout_marginRight="30dp"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:background="@drawable/selector_confirm_bg"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:text="@string/app_dialog_ok"
|
|
|
|
|
+ android:textColor="@color/white"
|
|
|
|
|
+ android:textSize="14sp"/>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:id="@+id/data_inquiry_list_exact_bg"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
android:layout_height="match_parent"
|
|
|
android:background="#20000000"
|
|
android:background="#20000000"
|
|
|
/>
|
|
/>
|
|
|
|
|
+
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
+
|
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|