<?xml version="1.0" encoding="utf-8"?> 
 | 
<LinearLayout 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:orientation="vertical"> 
 | 
  
 | 
    <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" 
 | 
        app:centerText="写卡详情页" 
 | 
        app:leftImage="@mipmap/icon_back" /> 
 | 
  
 | 
    <LinearLayout 
 | 
        android:layout_width="match_parent" 
 | 
        android:layout_height="match_parent" 
 | 
        android:orientation="vertical" 
 | 
        android:padding="30dp"> 
 | 
  
 | 
        <TextView 
 | 
            android:id="@+id/red_name" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content" 
 | 
  
 | 
            android:text="用户姓名:" 
 | 
            android:textSize="@dimen/text_size" /> 
 | 
  
 | 
  
 | 
        <TextView 
 | 
            android:id="@+id/red_initCode" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content" 
 | 
            android:layout_marginTop="15dp" 
 | 
            android:text="当前卡号:" 
 | 
            android:textSize="@dimen/text_size" /> 
 | 
  
 | 
        <TextView 
 | 
            android:id="@+id/red_remainder_morny" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content" 
 | 
            android:layout_marginTop="15dp" 
 | 
            android:text="充值金额:" 
 | 
            android:textSize="@dimen/text_size" /> 
 | 
        <TextView 
 | 
            android:id="@+id/red_recharge_water" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content" 
 | 
            android:layout_marginTop="15dp" 
 | 
            android:text="充值水量:" 
 | 
            android:textSize="@dimen/text_size" /> 
 | 
        <TextView 
 | 
            android:id="@+id/red_remainder_blance" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content" 
 | 
            android:layout_marginTop="15dp" 
 | 
            android:text="剩余金额:" 
 | 
            android:visibility="gone" 
 | 
            android:textSize="@dimen/text_size" /> 
 | 
        <TextView 
 | 
            android:id="@+id/red_surplusWater" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content" 
 | 
            android:layout_marginTop="15dp" 
 | 
            android:text="剩余水量:" 
 | 
            android:textSize="@dimen/text_size" /> 
 | 
        <TextView 
 | 
            android:id="@+id/red_rechargeDate" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content" 
 | 
            android:layout_marginTop="15dp" 
 | 
            android:text="本卡最后购水日期:" 
 | 
            android:textSize="@dimen/text_size" 
 | 
            android:visibility="gone" /> 
 | 
  
 | 
        <TextView 
 | 
            android:id="@+id/red_rechargeNumber" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content" 
 | 
            android:layout_marginTop="15dp" 
 | 
            android:text="本卡充值次数:" 
 | 
            android:textSize="@dimen/text_size" 
 | 
            android:visibility="gone" /> 
 | 
  
 | 
        <TextView 
 | 
            android:id="@+id/red_statu" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content" 
 | 
            android:layout_marginTop="15dp" 
 | 
            android:text="卡状态:" 
 | 
            android:textSize="@dimen/text_size" /> 
 | 
  
 | 
        <TextView 
 | 
            android:id="@+id/tip" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="wrap_content" 
 | 
            android:layout_marginTop="20dp" 
 | 
            android:gravity="center" 
 | 
            android:text="充值成功!" 
 | 
            android:textColor="@color/red" 
 | 
            android:textSize="@dimen/text_size" /> 
 | 
    </LinearLayout> 
 | 
  
 | 
</LinearLayout> 
 |