activity_digital_document.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:id="@+id/layout_home_content"
  5. android:layout_height="match_parent"
  6. android:background="#ffff"
  7. android:orientation="vertical"
  8. android:fitsSystemWindows="true" >
  9. <include
  10. android:id="@+id/ll_title"
  11. layout="@layout/fragment_title" />
  12. <android.support.v4.view.ViewPager
  13. android:id="@+id/photoVp"
  14. android:layout_below="@id/ll_title"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. >
  18. </android.support.v4.view.ViewPager>
  19. <LinearLayout
  20. android:layout_width="match_parent"
  21. android:layout_marginTop="5dp"
  22. android:layout_alignParentBottom="true"
  23. android:layout_height="51dp"
  24. android:orientation="vertical">
  25. <View
  26. android:layout_width="match_parent"
  27. android:layout_height="1dp"
  28. android:background="@color/lightgray"
  29. />
  30. <LinearLayout
  31. android:layout_width="match_parent"
  32. android:layout_height="50dp"
  33. android:orientation="horizontal"
  34. >
  35. <CheckBox
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:layout_gravity="center_vertical"
  39. android:layout_marginLeft="10dp"
  40. android:checked="false"
  41. android:button="@drawable/checkbox"
  42. android:id="@+id/btnCheckall"
  43. />
  44. <TextView
  45. android:layout_width="wrap_content"
  46. android:layout_height="wrap_content"
  47. android:layout_gravity="center_vertical"
  48. android:layout_marginLeft="3dp"
  49. android:textColor="@color/black"
  50. android:text="全选"
  51. android:textSize="@dimen/textsize_14"
  52. android:id="@+id/btnCheckalltext"
  53. />
  54. </LinearLayout>
  55. </LinearLayout>
  56. </RelativeLayout>