| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?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:background="#ffff"
- 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:orientation="horizontal"
- zhy:item_count="3" >
- </com.dongkesoft.ibossmini.view.ViewPagerIndicator>
- <LinearLayout
- android:id="@+id/ll_bottom"
- android:layout_width="match_parent"
- android:background="@color/white"
- android:layout_height="50dp"
- android:layout_alignParentBottom="true"
- 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="match_parent"
- android:orientation="horizontal" >
- <LinearLayout
- android:id="@+id/ll_rounding"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:gravity="center"
- android:layout_weight="1"
- android:orientation="vertical" >
- <TextView
- android:layout_width="wrap_content"
- android:textSize="13sp"
- android:textColor="@color/black"
- android:layout_height="wrap_content"
- android:text="舍零金额"/>
- <EditText
- android:id="@+id/etRounding"
- android:layout_width="100dp"
- android:layout_marginTop="2dp"
- android:gravity="center"
- android:textSize="13sp"
- android:singleLine="true"
- android:textColor="@color/black"
- android:background="@null"
- android:hint="请输入舍零金额"
- android:layout_height="wrap_content"
- />
-
- </LinearLayout>
-
-
- <LinearLayout
- android:id="@+id/ll_remainder_receivables"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:gravity="center"
- android:layout_weight="1"
- android:orientation="vertical" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textColor="@color/black"
- android:text="剩余应收"/>
- <TextView
- android:id="@+id/txtRemainderReceivables"
- android:layout_width="wrap_content"
- android:layout_marginTop="2dp"
- android:textColor="@color/black"
- android:layout_height="wrap_content"
- />
-
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ll_save"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:gravity="right"
- android:layout_weight="1"
- android:orientation="horizontal" >
- <Button
- android:id="@+id/btn_save"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:textColor="@color/white"
- android:layout_gravity="center"
- android:text="保存"
- android:background="@color/red"
- />
- </LinearLayout>
- </LinearLayout>
- </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>
|