12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#ffffff" >
- <LinearLayout
- android:id="@+id/bdp_paycenter_layout_list_parent"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="center_vertical"
- android:orientation="vertical" >
- <LinearLayout
- android:id="@+id/bdp_paycenter_layout_list"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="#ffffff"
- android:gravity="center_vertical"
- android:orientation="vertical" >
- <LinearLayout
- android:id="@+id/bdp_paycenter_layout_notice_area"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- </LinearLayout>
- </LinearLayout>
- <!--
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="12dp"
- android:background="@drawable/bdp_paycenter_top_info_bottom_bg"
- android:orientation="horizontal" >
- </LinearLayout>
- -->
- </LinearLayout>
- <ScrollView
- android:id="@+id/bdp_paycenter_sv_content"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_below="@+id/bdp_paycenter_layout_list_parent"
- android:fadeScrollbars="false"
- android:fillViewport="true"
- android:scrollbarStyle="insideOverlay"
- android:scrollbarThumbVertical="@drawable/bdp_paycenter_scrollbar_gray" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
- <LinearLayout
- android:id="@+id/bdp_paycenter_layout_paycontent"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="10"
- android:orientation="vertical"
- android:layout_marginLeft="15dp"
- >
- </LinearLayout>
- <RelativeLayout
- android:id="@+id/bdp_paycenter_layout_baidu_logo_parent"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="0"
- android:gravity="center|bottom"
- android:orientation="vertical" >
- </RelativeLayout>
- </LinearLayout>
- </ScrollView>
- </RelativeLayout>
- </LinearLayout>
|