|
@@ -6,6 +6,41 @@
|
|
|
android:background="@color/background_color"
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/search_view"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/background_color"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:visibility="visible"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/add_itinerary_title">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:layout_marginEnd="@dimen/common_padding"
|
|
|
+ android:layout_marginBottom="@dimen/common_padding"
|
|
|
+ android:background="@drawable/shape_corner_background_search"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <com.pan_american.android.util.SearchView
|
|
|
+ android:id="@+id/search_text"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginStart="@dimen/common_padding"
|
|
|
+ android:layout_marginEnd="@dimen/common_padding"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:imeOptions="actionSearch"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="@color/text_color"
|
|
|
+ android:textSize="@dimen/text_size_medium" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
<com.scwang.smart.refresh.layout.SmartRefreshLayout
|
|
|
android:id="@+id/group_info_container"
|
|
|
android:layout_width="match_parent"
|