<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="#F5F5F5">
|
|
<com.dayu.baselibrary.view.TitleBar
|
android:id="@+id/titleBar"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/dimen_title_height"
|
android:background="@color/title_bar_bg"
|
android:elevation="4dp"
|
app:centerText="我的" />
|
|
<LinearLayout
|
android:id="@+id/recharge_read_LL"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_below="@+id/titleBar"
|
android:orientation="vertical"
|
android:visibility="visible">
|
|
<androidx.cardview.widget.CardView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="16dp"
|
app:cardCornerRadius="8dp"
|
app:cardElevation="2dp">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:padding="16dp">
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="16dp"
|
android:gravity="center"
|
android:text="请将卡贴在设备上进行读卡"
|
android:textColor="#333333"
|
android:textSize="@dimen/text_size"
|
android:textStyle="bold" />
|
|
<ImageView
|
android:layout_width="200dp"
|
android:layout_height="200dp"
|
android:layout_gravity="center"
|
android:scaleType="fitCenter"
|
android:src="@mipmap/nfc_write" />
|
</LinearLayout>
|
</androidx.cardview.widget.CardView>
|
</LinearLayout>
|
|
<ScrollView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_above="@+id/recharge_registBtn"
|
android:layout_below="@+id/header_layout"
|
android:fillViewport="true">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:padding="16dp">
|
|
<LinearLayout
|
android:id="@+id/recharge_text_LL"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:visibility="gone">
|
|
<androidx.cardview.widget.CardView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
|
app:cardCornerRadius="8dp"
|
app:cardElevation="2dp">
|
|
<LinearLayout
|
android:id="@+id/recharge_LL"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:padding="16dp">
|
|
|
<TextView
|
android:id="@+id/red_recharge_water"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:text="充值水量:"
|
android:textColor="#333333"
|
android:textSize="@dimen/text_size"
|
android:visibility="gone" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="#F9F9F9"
|
android:orientation="vertical"
|
android:padding="12dp">
|
|
<TextView
|
android:id="@+id/recharge_tx"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:text="充值金额(元):"
|
android:textColor="@color/red"
|
android:textSize="@dimen/new_card_size"
|
android:textStyle="bold" />
|
|
<EditText
|
android:id="@+id/recharge_water"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@android:color/white"
|
android:hint="请输入充值的金额"
|
android:inputType="numberDecimal"
|
android:padding="12dp"
|
android:textSize="@dimen/new_card_size" />
|
</LinearLayout>
|
</LinearLayout>
|
</androidx.cardview.widget.CardView>
|
|
<androidx.cardview.widget.CardView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="15dp"
|
android:layout_marginBottom="16dp"
|
app:cardCornerRadius="8dp"
|
app:cardElevation="2dp">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:padding="16dp">
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="12dp"
|
android:text="卡片信息"
|
android:textColor="#333333"
|
android:textSize="16sp"
|
android:textStyle="bold" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="卡状态:"
|
android:textColor="#666666"
|
android:textSize="@dimen/text_size" />
|
|
<TextView
|
android:id="@+id/red_statu"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textColor="@color/red"
|
android:textSize="@dimen/new_card_size" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="姓名:"
|
android:textColor="#666666"
|
android:textSize="@dimen/new_card_size" />
|
|
<TextView
|
android:id="@+id/userName"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textColor="#333333"
|
android:textSize="@dimen/new_card_size" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="卡号:"
|
android:textColor="#666666"
|
android:textSize="@dimen/text_size" />
|
|
<TextView
|
android:id="@+id/red_initCode"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text=""
|
android:textColor="#333333"
|
android:textSize="@dimen/new_card_size" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="用户编号:"
|
android:textColor="#666666"
|
android:textSize="@dimen/text_size" />
|
|
<TextView
|
android:id="@+id/red_userCode"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text=""
|
android:textColor="#333333"
|
android:textSize="@dimen/new_card_size" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:orientation="horizontal"
|
android:visibility="visible">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="充值后剩余金额:"
|
android:textColor="#666666"
|
android:textSize="@dimen/text_size" />
|
|
<TextView
|
android:id="@+id/red_remainder_blance"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textColor="#333333"
|
android:textSize="@dimen/new_card_size" />
|
</LinearLayout>
|
</LinearLayout>
|
</androidx.cardview.widget.CardView>
|
|
<androidx.cardview.widget.CardView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="16dp"
|
app:cardCornerRadius="8dp"
|
app:cardElevation="2dp">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:padding="16dp">
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="12dp"
|
android:text="电量信息"
|
android:textColor="#333333"
|
android:textSize="16sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/red_balance_electric"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:background="#F9F9F9"
|
android:padding="12dp"
|
android:text="剩余电量:"
|
android:textColor="#333333"
|
android:textSize="@dimen/text_size"
|
android:visibility="visible" />
|
|
<TextView
|
android:id="@+id/red_rechargeDate"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:background="#F9F9F9"
|
android:padding="12dp"
|
android:text="最后购水日期:"
|
android:textColor="#333333"
|
android:textSize="@dimen/text_size"
|
android:visibility="visible" />
|
|
<TextView
|
android:id="@+id/red_rechargeElectric"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:background="#F9F9F9"
|
android:padding="12dp"
|
android:text="电量单价:"
|
android:textColor="#333333"
|
android:textSize="@dimen/text_size"
|
android:visibility="visible" />
|
|
<TextView
|
android:id="@+id/red_rechargeNumber"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:background="#F9F9F9"
|
android:padding="12dp"
|
android:text="充值次数:"
|
android:textColor="#333333"
|
android:textSize="@dimen/text_size"
|
android:visibility="gone" />
|
|
<TextView
|
android:id="@+id/red_total_water"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:background="#F9F9F9"
|
android:padding="12dp"
|
android:text="总用水量:"
|
android:textColor="#333333"
|
android:textSize="@dimen/text_size"
|
android:visibility="gone" />
|
|
<TextView
|
android:id="@+id/red_total_power"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="8dp"
|
android:background="#F9F9F9"
|
android:padding="12dp"
|
android:text="总用电量:"
|
android:textColor="#333333"
|
android:textSize="@dimen/text_size"
|
android:visibility="gone" />
|
|
<TextView
|
android:id="@+id/red_waterPrice"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="#F9F9F9"
|
android:padding="12dp"
|
android:text="每立方米水价格:"
|
android:textColor="#333333"
|
android:textSize="@dimen/text_size"
|
android:visibility="gone" />
|
</LinearLayout>
|
</androidx.cardview.widget.CardView>
|
|
|
</LinearLayout>
|
</LinearLayout>
|
</ScrollView>
|
|
<Button
|
android:id="@+id/recharge_registBtn"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:layout_alignParentBottom="true"
|
android:layout_margin="16dp"
|
android:background="@drawable/rounded_button_bg"
|
android:elevation="2dp"
|
android:gravity="center"
|
android:text="充值"
|
android:textColor="@color/white"
|
android:textSize="@dimen/new_card_size"
|
android:textStyle="bold"
|
android:visibility="gone" />
|
</RelativeLayout>
|