<?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">
|
|
<com.dayu.recharge.view.TitleBar
|
android:id="@+id/titleBar"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/dimen_title_height"
|
android:background="@drawable/title_bar_bg"
|
app:centerText="充值"
|
app:leftImage="@mipmap/icon_back" />
|
|
<ScrollView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_below="@+id/titleBar">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical">
|
|
<LinearLayout
|
style="@style/newCardLL"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="设备序列号:"
|
android:textSize="@dimen/new_card_size" />
|
|
<TextView
|
android:id="@+id/recharge_villageNum"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="@dimen/new_card_size" />
|
|
|
</LinearLayout>
|
|
<LinearLayout
|
style="@style/newCardLL"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="用户名:"
|
android:textSize="@dimen/new_card_size" />
|
|
<TextView
|
android:id="@+id/recharge_name"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="@dimen/new_card_size" />
|
|
|
</LinearLayout>
|
|
<LinearLayout
|
style="@style/newCardLL"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="用户号:"
|
android:textSize="@dimen/new_card_size" />
|
|
<TextView
|
android:id="@+id/recharge_userNum"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:inputType="number"
|
android:textSize="@dimen/new_card_size" />
|
|
|
</LinearLayout>
|
|
<LinearLayout
|
style="@style/newCardLL"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/textView2"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="日期:"
|
android:textSize="@dimen/new_card_size" />
|
|
<TextView
|
android:id="@+id/recharge_date"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:textSize="@dimen/new_card_size" />
|
|
|
</LinearLayout>
|
|
<LinearLayout
|
style="@style/newCardLL"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="充值金额:"
|
android:textSize="@dimen/new_card_size" />
|
|
<TextView
|
android:id="@+id/recharge_water"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:inputType="number"
|
android:textSize="@dimen/new_card_size" />
|
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|
|
|
</ScrollView>
|
|
|
</RelativeLayout>
|