activity_new_filling.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:zhy="http://schemas.android.com/apk/res/com.dongkesoft.ibossmini"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:fitsSystemWindows="true" >
  7. <include
  8. android:id="@+id/ll_title"
  9. layout="@layout/fragment_title" />
  10. <com.dongkesoft.ibossmini.activity.approve.ViewPagerIndicator
  11. android:id="@+id/vpi_merger"
  12. android:layout_width="match_parent"
  13. android:layout_height="45dp"
  14. android:layout_below="@id/ll_title"
  15. android:background="#ffff"
  16. android:orientation="horizontal"
  17. zhy:item_count="5" >
  18. </com.dongkesoft.ibossmini.activity.approve.ViewPagerIndicator>
  19. <LinearLayout
  20. android:id="@+id/ll_bottom"
  21. android:layout_width="match_parent"
  22. android:background="@color/white"
  23. android:paddingLeft="5dp"
  24. android:paddingRight="5dp"
  25. android:layout_height="60dp"
  26. android:gravity="center"
  27. android:layout_alignParentBottom="true"
  28. android:orientation="horizontal" >
  29. <Button
  30. android:id="@+id/btn_save"
  31. android:layout_width="match_parent"
  32. android:layout_height="44dp"
  33. android:layout_gravity="center"
  34. android:background="@drawable/new_log_add_save_button" />
  35. </LinearLayout>
  36. <android.support.v4.view.ViewPager
  37. android:id="@+id/vp_nav"
  38. android:layout_width="fill_parent"
  39. android:layout_height="fill_parent"
  40. android:layout_above="@id/ll_bottom"
  41. android:layout_below="@id/vpi_merger" >
  42. </android.support.v4.view.ViewPager>
  43. </RelativeLayout>