| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:zhy="http://schemas.android.com/apk/res/com.dongkesoft.ibossmini"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fitsSystemWindows="true" >
- <include
- android:id="@+id/ll_title"
- layout="@layout/fragment_title" />
- <com.dongkesoft.ibossmini.view.ViewPagerIndicator
- android:id="@+id/vpi_merger"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:layout_below="@id/ll_title"
- android:background="#ffff"
- android:orientation="horizontal"
- zhy:item_count="5" >
- </com.dongkesoft.ibossmini.view.ViewPagerIndicator>
- <LinearLayout
- android:id="@+id/ll_bottom"
- android:layout_width="match_parent"
- android:background="@color/white"
- android:paddingLeft="5dp"
- android:paddingRight="5dp"
- android:layout_height="60dp"
- android:gravity="center"
- android:layout_alignParentBottom="true"
- android:orientation="horizontal" >
-
-
- <Button
- android:id="@+id/btn_save"
- android:layout_width="match_parent"
- android:layout_height="44dp"
- android:layout_gravity="center"
- android:background="@drawable/new_log_add_save_button" />
- </LinearLayout>
- <android.support.v4.view.ViewPager
- android:id="@+id/vp_nav"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_above="@id/ll_bottom"
- android:layout_below="@id/vpi_merger" >
- </android.support.v4.view.ViewPager>
- </RelativeLayout>
|