| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/gray_bg"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:background="@color/white"
- android:gravity="center_vertical"
- android:orientation="horizontal">
- <LinearLayout
- android:id="@+id/ll_search"
- android:layout_width="0dp"
- android:layout_height="31dp"
- android:layout_marginLeft="14dp"
- android:layout_weight="1"
- android:background="@drawable/corners_stork_blue_0070_5dp"
- android:gravity="center_vertical"
- android:orientation="horizontal">
- <View
- android:id="@+id/v_search"
- android:layout_width="14dp"
- android:layout_height="14dp"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="5dp"
- android:background="@mipmap/ic_search_gray" />
- <EditText
- android:id="@+id/et_search"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="@null"
- android:gravity="center_vertical"
- android:hint="@string/home_search_title"
- android:imeOptions="actionSearch"
- android:singleLine="true"
- android:textColor="@color/text_black"
- android:textColorHint="@color/text_gray_cc"
- android:textSize="@dimen/px36_12sp" />
- </LinearLayout>
- <TextView
- android:id="@+id/tv_cancel"
- android:layout_width="60dp"
- android:layout_height="match_parent"
- android:gravity="center"
- android:text="@string/cancel"
- android:textColor="@color/text_black_44"
- android:textSize="@dimen/px45_15sp" />
- </LinearLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:id="@+id/ll_history"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="30dp"
- android:orientation="vertical"
- android:paddingRight="15dp"
- android:paddingLeft="15dp">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="horizontal">
- <TextView
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="@string/search_history"
- android:textColor="@color/text_black"
- android:textSize="@dimen/px39_13sp" />
- <View
- android:id="@+id/v_clear"
- android:layout_width="12dp"
- android:layout_height="17dp"
- android:background="@mipmap/ic_clear_search" />
- </LinearLayout>
- <com.donkingliang.labels.LabelsView xmlns:app="http://schemas.android.com/apk/res-auto"
- android:id="@+id/lv_history"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="19dp"
- app:labelBackground="@drawable/corners_gray_eb_5dp"
- app:labelTextColor="@color/text_black_66"
- app:labelTextPaddingBottom="7dp"
- app:labelTextPaddingLeft="14dp"
- app:labelTextPaddingRight="14dp"
- app:labelTextPaddingTop="7dp"
- app:labelTextSize="@dimen/px39_13sp"
- app:lineMargin="10dp"
- app:selectType="NONE"
- app:wordMargin="10dp" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="24dp"
- android:text="@string/search_host"
- android:textColor="@color/text_black"
- android:textSize="@dimen/px39_13sp" />
- <com.donkingliang.labels.LabelsView xmlns:app="http://schemas.android.com/apk/res-auto"
- android:id="@+id/lv_hot"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="19dp"
- app:labelBackground="@drawable/corners_gray_eb_5dp"
- app:labelTextColor="@color/text_black_66"
- app:labelTextPaddingBottom="7dp"
- app:labelTextPaddingLeft="14dp"
- app:labelTextPaddingRight="14dp"
- app:labelTextPaddingTop="7dp"
- app:labelTextSize="@dimen/px39_13sp"
- app:lineMargin="10dp"
- app:selectType="NONE"
- app:wordMargin="10dp" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:visibility="gone">
- <com.tongyu.luck.happywork.baselibrary.widget.refresh.ProgressRefreshLayout
- android:id="@+id/prl_refresh"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <ListView
- android:id="@+id/iv_job"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:divider="@null"
- android:dividerHeight="0px" />
- </com.tongyu.luck.happywork.baselibrary.widget.refresh.ProgressRefreshLayout>
- </LinearLayout>
- </RelativeLayout>
- </LinearLayout>
|