bdp_paycenter_pay_body_landscape.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. android:orientation="vertical" >
  7. <LinearLayout
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent"
  10. android:background="#fff"
  11. android:orientation="horizontal" >
  12. <!-- The left area -->
  13. <RelativeLayout
  14. android:layout_width="84dp"
  15. android:layout_height="fill_parent"
  16. android:background="#ffffff"
  17. android:orientation="vertical" >
  18. <!-- The game card area -->
  19. <ScrollView
  20. android:id="@+id/bdp_paycenter_layout_list_parent"
  21. style="@style/bdp_paycenter_payment_scrollview_style"
  22. android:layout_width="fill_parent"
  23. android:layout_height="fill_parent"
  24. android:layout_above="@+id/bdp_paycenter_layout_baidu_logo_parent"
  25. android:layout_marginTop="8dp"
  26. android:gravity="center_vertical"
  27. android:orientation="vertical" >
  28. <LinearLayout
  29. android:id="@+id/bdp_paycenter_layout_list"
  30. android:layout_width="fill_parent"
  31. android:layout_height="wrap_content"
  32. android:orientation="vertical" >
  33. <LinearLayout
  34. android:id="@+id/bdp_paycenter_layout_notice_area"
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:orientation="horizontal" >
  38. </LinearLayout>
  39. </LinearLayout>
  40. </ScrollView>
  41. <!-- The game card area end -->
  42. <!-- The bottom logo area -->
  43. <LinearLayout
  44. android:id="@+id/bdp_paycenter_layout_baidu_logo_parent"
  45. android:layout_width="fill_parent"
  46. android:layout_height="wrap_content"
  47. android:layout_alignParentBottom="true"
  48. android:gravity="center"
  49. android:orientation="vertical" >
  50. </LinearLayout>
  51. <!-- The bottom logo area end -->
  52. </RelativeLayout>
  53. <!-- The left area end -->
  54. <!-- The right area -->
  55. <View
  56. android:layout_height="match_parent"
  57. android:layout_width="1px"
  58. android:background="#d8d8d8"
  59. />
  60. <ScrollView
  61. android:id="@+id/bdp_paycenter_sv_content"
  62. android:layout_width="fill_parent"
  63. android:layout_height="fill_parent"
  64. android:fadeScrollbars="false"
  65. android:scrollbarStyle="insideOverlay"
  66. android:layout_marginLeft="15dp"
  67. android:scrollbarThumbVertical="@drawable/bdp_paycenter_scrollbar_gray" >
  68. <LinearLayout
  69. android:id="@+id/bdp_paycenter_layout_paycontent"
  70. android:layout_width="fill_parent"
  71. android:layout_height="fill_parent"
  72. android:orientation="vertical" >
  73. </LinearLayout>
  74. </ScrollView>
  75. <!-- The right area end -->
  76. </LinearLayout>
  77. </RelativeLayout>