<?xml version="1.0" encoding="utf-8"?>
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:id="@+id/item"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="13dp"
|
android:layout_marginTop="10dp"
|
android:layout_marginRight="13dp"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="卡号:"
|
android:textSize="18sp" />
|
|
<TextView
|
android:id="@+id/cardId"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="2"
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="3dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="用户编号:"
|
android:textSize="18sp" />
|
|
<TextView
|
android:id="@+id/userCode"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="2"
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="3dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="卡内余额:"
|
android:textSize="18sp" />
|
|
<TextView
|
android:id="@+id/balance"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="2"
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="3dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="剩余电量:"
|
android:textSize="18sp" />
|
|
<TextView
|
android:id="@+id/balanceElectic"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="2"
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="3dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="累计充值:"
|
android:textSize="18sp" />
|
|
<TextView
|
android:id="@+id/totalMorny"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="2"
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="3dp"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:text="卡状态:"
|
android:textSize="18sp" />
|
|
<TextView
|
android:id="@+id/state"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="2"
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="3dp"
|
android:gravity="center"
|
android:orientation="horizontal">
|
|
<!-- <TextView-->
|
<!-- android:layout_width="0dp"-->
|
<!-- android:layout_height="wrap_content"-->
|
<!-- android:layout_weight="1"-->
|
<!-- android:text="最后充值时间:"-->
|
<!-- android:textSize="18sp" />-->
|
|
<TextView
|
android:id="@+id/lastRechargeTime"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
|
android:text=""
|
android:textSize="18sp" />
|
</LinearLayout>
|
|
|
</LinearLayout>
|
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:layout_marginTop="13dp"
|
android:background="#000000" />
|
|
</LinearLayout>
|
</layout>
|