fan_pay_failure_layout.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/TextColorWhite"
  6. android:orientation="vertical" >
  7. <include layout="@layout/fan_bank_card_title" />
  8. <LinearLayout
  9. android:id="@+id/fan_err_title"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:layout_below="@id/fan_title_layout"
  13. android:gravity="center_horizontal"
  14. android:orientation="horizontal" >
  15. <ImageView
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_marginTop="50dp"
  19. android:contentDescription="@null"
  20. android:src="@drawable/fanwei_error_icon_imag" />
  21. </LinearLayout>
  22. <TextView
  23. android:id="@+id/fanwei_err_text"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_below="@+id/fan_err_title"
  27. android:layout_centerHorizontal="true"
  28. android:layout_marginLeft="@dimen/fanwei_10_dp"
  29. android:layout_marginRight="@dimen/fanwei_10_dp"
  30. android:layout_marginTop="@dimen/fanwei_30_dp"
  31. android:gravity="center_horizontal"
  32. android:text="@string/fanwei_err_text"
  33. android:textColor="@color/fanwei_color_banhui"
  34. android:textSize="@dimen/text_18_size" />
  35. <Button
  36. android:id="@+id/fanwei_Rebind_bank_card"
  37. style="@style/fanwei_btn_style"
  38. android:layout_below="@id/fanwei_err_text"
  39. android:layout_centerHorizontal="true"
  40. android:layout_marginTop="@dimen/fanwei_98_dp"
  41. android:text="@string/fanwei_Change_bank_card" />
  42. </RelativeLayout>