| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-
- android:layout_width="match_parent"
- android:id="@+id/layout_home_content"
- android:layout_height="match_parent"
- android:background="#ffff"
- android:orientation="vertical"
- android:fitsSystemWindows="true" >
- <include
- android:id="@+id/ll_title"
- layout="@layout/fragment_title" />
-
- <android.support.v4.view.ViewPager
- android:id="@+id/photoVp"
- android:layout_below="@id/ll_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- >
- </android.support.v4.view.ViewPager>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_marginTop="5dp"
- android:layout_alignParentBottom="true"
- android:layout_height="51dp"
- android:orientation="vertical">
-
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/lightgray"
- />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:orientation="horizontal"
- >
- <CheckBox
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="10dp"
- android:checked="false"
- android:button="@drawable/checkbox"
- android:id="@+id/btnCheckall"
- />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:layout_marginLeft="3dp"
- android:textColor="@color/black"
- android:text="全选"
- android:textSize="@dimen/textsize_14"
- android:id="@+id/btnCheckalltext"
- />
-
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
|