<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@android:color/white"
|
>
|
|
<include
|
android:id="@+id/ic_nav"
|
layout="@layout/ttw_cz_navigation"
|
/>
|
<View
|
android:id="@+id/charge_view"
|
android:layout_width="match_parent"
|
android:layout_height="2dip"
|
android:background="@drawable/ttw_edit_two_bg"
|
android:layout_below="@id/ic_nav"
|
/>
|
|
<FrameLayout
|
android:id="@+id/fl_charge_channel"
|
android:layout_width="120dp"
|
android:layout_height="match_parent"
|
android:layout_below="@id/charge_view"
|
android:background="#FCFCFC" >
|
|
<View
|
android:id="@+id/v_slider"
|
android:layout_width="match_parent"
|
android:layout_height="40dip"
|
android:layout_gravity="top|left"
|
android:background="#DCDCDC"
|
/>
|
|
<LinearLayout
|
android:id="@+id/ll_charge_channel"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical" >
|
|
<ListView
|
android:id="@+id/lv_pay"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:divider="#FBE5D2"
|
android:paddingLeft="5dip"
|
android:paddingRight="5dip"
|
android:scrollingCache="false"
|
android:fadingEdge="none"
|
></ListView>
|
</LinearLayout>
|
</FrameLayout>
|
|
<TextView
|
android:id="@+id/tv_add"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_below="@id/ic_nav"
|
android:layout_margin="6dip"
|
android:layout_toRightOf="@id/fl_charge_channel"
|
android:background="#FBE5D2"
|
android:paddingLeft="25dip"
|
android:singleLine="true"
|
android:text="欢迎您的充值!"
|
android:textColor="#f76300"
|
android:textSize="13sp" />
|
|
<com.aoyou.sdk.pager.VerticalViewPager
|
android:id="@+id/dv_chargeContent"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_toRightOf="@id/fl_charge_channel"
|
android:layout_below="@id/tv_add"
|
android:layout_marginLeft="6dip"
|
/>
|
|
</RelativeLayout>
|