|
@@ -0,0 +1,69 @@
|
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
+<com.scwang.smartrefresh.layout.SmartRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
+ android:id="@+id/refresh"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent">
|
|
|
|
|
+
|
|
|
|
|
+ <android.support.v4.widget.NestedScrollView
|
|
|
|
|
+ android:id="@+id/scrollView"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:scrollbars="none">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:focusable="true"
|
|
|
|
|
+ android:focusableInTouchMode="true"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <RelativeLayout
|
|
|
|
|
+ android:id="@+id/wc_gift_center_title_container"
|
|
|
|
|
+ style="@style/style_wc_rl">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ style="@style/style_wc_line_title"
|
|
|
|
|
+ android:text="礼包中心" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/wc_all_gift"
|
|
|
|
|
+ style="@style/style_wc_more"
|
|
|
|
|
+ android:text="我的礼包" />
|
|
|
|
|
+ </RelativeLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <android.support.v7.widget.AppCompatAutoCompleteTextView
|
|
|
|
|
+ android:id="@+id/fgt_gift_center_input_et"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="30dp"
|
|
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
|
|
+ android:layout_marginTop="21dp"
|
|
|
|
|
+ android:layout_marginEnd="16dp"
|
|
|
|
|
+ android:background="@drawable/shape_f5_solid_rectangle_15"
|
|
|
|
|
+ android:drawableStart="@mipmap/sous"
|
|
|
|
|
+ android:drawablePadding="6dp"
|
|
|
|
|
+ android:gravity="center|start"
|
|
|
|
|
+ android:hint="搜索游戏"
|
|
|
|
|
+ android:imeOptions="actionSearch"
|
|
|
|
|
+ android:maxLength="40"
|
|
|
|
|
+ android:paddingStart="6dp"
|
|
|
|
|
+ android:paddingEnd="6dp"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ android:textColor="@color/black_6_3"
|
|
|
|
|
+ android:textColorHint="#CCCCCC"
|
|
|
|
|
+ android:textSize="12sp" />
|
|
|
|
|
+
|
|
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
|
|
+ android:id="@+id/fgt_gift_center_type_list"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
|
|
+
|
|
|
|
|
+ <android.support.v7.widget.RecyclerView
|
|
|
|
|
+ android:id="@+id/fgt_gift_center_x_list"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content" />
|
|
|
|
|
+
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ </android.support.v4.widget.NestedScrollView>
|
|
|
|
|
+
|
|
|
|
|
+</com.scwang.smartrefresh.layout.SmartRefreshLayout>
|