Files
HouseProperty/app/src/main/res/layout/parking_fee.xml
2020-08-03 09:11:54 +08:00

111 lines
4.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".f2.ParkingFeeActivity">
<LinearLayout
android:layout_width="match_parent"
android:fitsSystemWindows="true"
android:focusable="true"
android:layout_height="match_parent">
<my_view.tao_bao_refresh.ScrollViewExtend
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/f7">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<my_view.tao_bao_refresh.RecyView
android:id="@+id/recy_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</my_view.tao_bao_refresh.RecyView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="10dip"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<my_view.two_recy_view.ChooseMoneyLayout
android:id="@+id/money_chose_money"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:horizontalSpacing="17dp"
android:numColumns="3"
android:verticalSpacing="20dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="horizontal"
android:focusable="true"
android:focusableInTouchMode="true"
android:padding="15dip">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16sp"
android:text="其他金额" />
<EditText
android:id="@+id/input_money"
android:layout_width="0dp"
android:layout_weight="1"
android:maxLength="8"
android:layout_height="wrap_content"
android:layout_marginLeft="15dip"
android:background="@null"
android:hint="请输入其他金额"
android:inputType="number|numberDecimal"
android:textSize="16sp" />
</LinearLayout>
<TextView
android:id="@+id/confirm"
android:layout_width="match_parent"
android:layout_height="50dip"
android:layout_marginLeft="15dip"
android:layout_marginTop="40dip"
android:layout_marginRight="15dip"
android:background="@drawable/selector_common_btn"
android:gravity="center"
android:text="立即支付"
android:textColor="@color/white"
android:textSize="18sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="50dip"
android:layout_marginLeft="15dip"
android:layout_marginTop="40dip"
android:layout_marginRight="15dip"
android:gravity="center"
android:textColor="@color/white"
android:textSize="18sp" />
</LinearLayout>
</LinearLayout>
</my_view.tao_bao_refresh.ScrollViewExtend>
</LinearLayout>
</layout>