123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:orientation="vertical"
- android:layout_height="wrap_content">
- <com.develop.common.widget.HomeFilterSortSearchView
- android:id="@+id/function_view"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <androidx.appcompat.widget.AppCompatTextView
- android:id="@+id/tv_food_category_name"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/convert_24px"
- android:layout_marginBottom="@dimen/convert_24px"
- android:textColor="@color/home_category_title"
- android:textSize="@dimen/convert_36px" />
- <com.develop.common.widget.CommonSearchLayout
- android:id="@+id/common_search_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- <com.develop.common.widget.CategoryTabViewLayout
- android:id="@+id/category_tab_view"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- </LinearLayout>
|