74 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			XML
		
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			XML
		
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     xmlns:tools="http://schemas.android.com/tools"
 | |
|     android:layout_width="match_parent"
 | |
|     android:layout_height="match_parent"
 | |
|     android:layout_marginLeft="@dimen/marginLeft"
 | |
|     android:layout_marginRight="@dimen/marginRight"
 | |
|     android:orientation="vertical">
 | |
| 
 | |
|     <FrameLayout
 | |
|         android:id="@+id/banner_container"
 | |
|         android:layout_height="@dimen/topBannerHeight"
 | |
|        style="@style/frmBannerContainer" />
 | |
| 
 | |
| 
 | |
|         <FrameLayout
 | |
|             android:layout_width="match_parent"
 | |
|             android:layout_height="match_parent"
 | |
| 
 | |
|             android:orientation="vertical">
 | |
| 
 | |
|             <android.support.v4.widget.SwipeRefreshLayout
 | |
|                 android:id="@+id/swipeLayout"
 | |
|                 android:layout_width="match_parent"
 | |
|                 android:layout_height="match_parent"
 | |
|                 android:orientation="vertical">
 | |
|             <android.support.v7.widget.RecyclerView
 | |
|                 android:id="@+id/id_recyclerview"
 | |
|                 android:layout_width="match_parent"
 | |
|                 android:layout_height="match_parent"
 | |
|                 android:layout_weight="1"
 | |
|                 android:divider="#ffff0000"
 | |
|                 android:dividerHeight="10dp"
 | |
|                 android:paddingTop="1dp"
 | |
|                 android:paddingBottom="40dp"
 | |
| 
 | |
|                 />
 | |
|             </android.support.v4.widget.SwipeRefreshLayout>
 | |
| 
 | |
|             <LinearLayout
 | |
|                 android:id="@+id/llShelfBottom"
 | |
|                 android:layout_width="match_parent"
 | |
|                 android:layout_height="wrap_content"
 | |
|                 android:layout_weight="0"
 | |
|                 android:background="@color/white"
 | |
|                 android:gravity="bottom"
 | |
|                 android:layout_gravity="bottom"
 | |
|                 android:orientation="horizontal"
 | |
|                 android:visibility="visible"
 | |
|                 android:paddingBottom="0dp"
 | |
| 
 | |
|                 >
 | |
| 
 | |
|                 <Button
 | |
|                     android:id="@+id/btnSelect"
 | |
|                     style="@style/buttonCates"
 | |
|                     android:text="全选"
 | |
|                     android:textColor="@color/colorAccent" />
 | |
| 
 | |
|                 <Button
 | |
|                     android:id="@+id/btnDelete"
 | |
|                     style="@style/buttonCates"
 | |
|                     android:text="删除"
 | |
|                     android:textColor="@color/colorAccent" />
 | |
| 
 | |
|             </LinearLayout>
 | |
|         </FrameLayout>
 | |
| 
 | |
| 
 | |
| 
 | |
|     <android.support.design.widget.TextInputEditText
 | |
|         android:layout_width="wrap_content"
 | |
|         android:layout_height="1500dp" />
 | |
| </LinearLayout> |