activity_new_enter_list.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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:id="@+id/layout_home_content"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="#ffff"
  8. android:fitsSystemWindows="true" >
  9. <include
  10. android:id="@+id/ll_title"
  11. layout="@layout/fragment_title" />
  12. <com.dongkesoft.ibossmini.activity.approve.ViewPagerIndicator
  13. android:id="@+id/vpi_merger"
  14. android:layout_width="match_parent"
  15. android:layout_height="45dp"
  16. android:layout_below="@id/ll_title"
  17. android:orientation="horizontal"
  18. zhy:item_count="2" >
  19. </com.dongkesoft.ibossmini.activity.approve.ViewPagerIndicator>
  20. <android.support.v4.view.ViewPager
  21. android:id="@+id/vp_nav"
  22. android:layout_width="fill_parent"
  23. android:layout_height="fill_parent"
  24. android:layout_above="@+id/bt_save"
  25. android:layout_below="@id/vpi_merger" >
  26. </android.support.v4.view.ViewPager>
  27. <Button
  28. android:id="@+id/bt_save"
  29. android:layout_width="match_parent"
  30. android:layout_height="44dp"
  31. android:layout_alignParentBottom="true"
  32. android:layout_gravity="center"
  33. android:layout_margin="5dp"
  34. android:background="@drawable/new_log_add_save_button" />
  35. </RelativeLayout>