bdp_paycenter_layout_accountinfo_fix.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:background="#ffffff"
  6. android:orientation="vertical" >
  7. <!-- 横屏的需要在view两侧做显示,需要拆分为两个view,原view只显示数字 -->
  8. <RelativeLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="43dp" >
  11. <TextView
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:layout_centerVertical="true"
  15. android:layout_marginLeft="15dp"
  16. android:text="@string/bdp_paycenter_pay_money_number"
  17. android:textColor="@color/bdp_color_999999"
  18. android:textSize="@dimen/bdp_paycenter_text_size_14_sp" />
  19. <TextView
  20. android:id="@+id/bdp_paycenter_tv_pay_money"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:layout_alignParentRight="true"
  24. android:layout_centerVertical="true"
  25. android:layout_marginRight="15dp"
  26. android:textColor="@color/bdp_color_333333"
  27. android:textSize="17sp"
  28. android:textStyle="bold" />
  29. </RelativeLayout>
  30. <View
  31. android:layout_width="match_parent"
  32. android:layout_height="1px"
  33. android:background="#d8d8d8" />
  34. <RelativeLayout
  35. android:layout_width="match_parent"
  36. android:layout_height="43dp" >
  37. <TextView
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:layout_centerVertical="true"
  41. android:layout_marginLeft="15dp"
  42. android:text="@string/bdp_paycenter_pay_goods_name"
  43. android:textColor="@color/bdp_color_999999"
  44. android:textSize="@dimen/bdp_paycenter_text_size_14_sp" />
  45. <TextView
  46. android:id="@+id/bdp_paycenter_tv_goods_namenumber"
  47. android:layout_width="wrap_content"
  48. android:layout_height="wrap_content"
  49. android:layout_alignParentRight="true"
  50. android:layout_centerVertical="true"
  51. android:layout_marginRight="15dp"
  52. android:textColor="@color/bdp_color_999999"
  53. android:textSize="14sp" />
  54. </RelativeLayout>
  55. <View
  56. android:layout_width="match_parent"
  57. android:layout_height="1px"
  58. android:background="#d8d8d8" />
  59. <RelativeLayout
  60. android:layout_width="match_parent"
  61. android:layout_height="43dp" >
  62. <TextView
  63. android:layout_width="wrap_content"
  64. android:layout_height="wrap_content"
  65. android:layout_centerVertical="true"
  66. android:layout_marginLeft="15dp"
  67. android:text="@string/bdp_paycenter_current_account"
  68. android:textColor="@color/bdp_color_999999"
  69. android:textSize="@dimen/bdp_paycenter_text_size_14_sp" />
  70. <TextView
  71. android:id="@+id/bdp_paycenter_tv_current_account"
  72. android:layout_width="wrap_content"
  73. android:layout_height="wrap_content"
  74. android:layout_alignParentRight="true"
  75. android:layout_centerVertical="true"
  76. android:layout_marginRight="15dp"
  77. android:textColor="@color/bdp_color_999999"
  78. android:textSize="14sp" />
  79. </RelativeLayout>
  80. <View
  81. android:layout_width="match_parent"
  82. android:layout_height="1px"
  83. android:background="#d8d8d8" />
  84. <RelativeLayout
  85. android:layout_width="match_parent"
  86. android:layout_height="43dp" >
  87. <TextView
  88. android:id="@+id/bdp_paycenter_tv_coin_name"
  89. android:layout_width="wrap_content"
  90. android:layout_height="wrap_content"
  91. android:layout_centerVertical="true"
  92. android:layout_marginLeft="15dp"
  93. android:text="@string/bdp_paycenter_baidubean_balance"
  94. android:textColor="@color/bdp_color_999999"
  95. android:textSize="@dimen/bdp_paycenter_text_size_14_sp" />
  96. <TextView
  97. android:id="@+id/bdp_paycenter_tv_kubi_balance"
  98. android:layout_width="wrap_content"
  99. android:layout_height="wrap_content"
  100. android:layout_alignParentRight="true"
  101. android:layout_centerVertical="true"
  102. android:layout_marginRight="15dp"
  103. android:textColor="@color/bdp_color_999999"
  104. android:textSize="14sp" />
  105. </RelativeLayout>
  106. <View
  107. android:layout_width="match_parent"
  108. android:layout_height="1px"
  109. android:background="#f5f5f5" />
  110. <LinearLayout
  111. android:layout_width="match_parent"
  112. android:layout_height="wrap_content"
  113. android:visibility="gone" >
  114. <FrameLayout
  115. android:id="@+id/bdp_paycenter_layout_goods_icon"
  116. android:layout_width="48dp"
  117. android:layout_height="48dp"
  118. android:paddingBottom="7dp"
  119. android:paddingLeft="8dp"
  120. android:paddingRight="8dp"
  121. android:paddingTop="7dp"
  122. android:visibility="gone" >
  123. <ImageView
  124. android:id="@+id/bdp_paycenter_iv_goods_icon"
  125. android:layout_width="48dp"
  126. android:layout_height="48dp" />
  127. <ImageView
  128. android:layout_width="48dp"
  129. android:layout_height="48dp"
  130. android:src="@drawable/bdp_paycenter_ic_goods_border" />
  131. </FrameLayout>
  132. <LinearLayout
  133. android:layout_width="match_parent"
  134. android:layout_height="match_parent"
  135. android:orientation="horizontal" >
  136. <RelativeLayout
  137. android:layout_width="match_parent"
  138. android:layout_height="match_parent"
  139. android:layout_weight="1"
  140. android:paddingBottom="7dp"
  141. android:paddingLeft="8dp"
  142. android:paddingRight="8dp"
  143. android:paddingTop="7dp" >
  144. </RelativeLayout>
  145. <FrameLayout
  146. android:id="@+id/bdp_paycenter_layout_activity_area"
  147. android:layout_width="match_parent"
  148. android:layout_height="match_parent"
  149. android:layout_weight="1.4"
  150. android:orientation="vertical"
  151. android:visibility="gone" >
  152. </FrameLayout>
  153. </LinearLayout>
  154. </LinearLayout>
  155. </LinearLayout>