fragment_web_pay.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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. <RelativeLayout
  6. android:id="@id/title_rl"
  7. android:layout_width="match_parent"
  8. android:layout_height="40dp"
  9. android:background="#2068ee">
  10. <TextView
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_centerInParent="true"
  14. android:text="@string/safe_pay_center"
  15. android:textColor="@color/white"
  16. android:textSize="18sp"/>
  17. <Button
  18. android:id="@id/close_btn"
  19. android:layout_width="18dp"
  20. android:layout_height="18dp"
  21. android:layout_alignParentRight="true"
  22. android:layout_centerVertical="true"
  23. android:layout_marginRight="10dp"
  24. android:background="@drawable/btn_close"/>
  25. </RelativeLayout>
  26. <WebView
  27. android:id="@id/pay_wv"
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent"
  30. android:layout_below="@id/title_rl"/>
  31. </RelativeLayout>