huouniongame_center_activity_float_web.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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="#00ffffff" >
  6. <RelativeLayout
  7. android:id="@+id/huo_sdk_rl_top"
  8. android:layout_width="match_parent"
  9. android:layout_height="50dip"
  10. android:visibility="gone"
  11. android:background="@color/huouniongame_sdk_black"
  12. >
  13. <ImageView
  14. android:id="@+id/huo_sdk_iv_return"
  15. android:layout_width="20dp"
  16. android:layout_height="20dp"
  17. android:src="@drawable/huouniongame_sdk_float_ic_back"
  18. android:layout_centerVertical="true"
  19. android:layout_marginLeft="12dip"/>
  20. <TextView
  21. android:id="@+id/huo_sdk_tv_back"
  22. android:layout_toRightOf="@id/huo_sdk_iv_return"
  23. android:layout_width="wrap_content"
  24. android:layout_height="38dp"
  25. android:layout_centerVertical="true"
  26. android:gravity="center"
  27. android:paddingBottom="6dip"
  28. android:paddingLeft="2dip"
  29. android:paddingRight="8dip"
  30. android:paddingTop="6dip"
  31. android:text="返回"
  32. android:textColor="@android:color/white" />
  33. <TextView
  34. android:id="@+id/huo_sdk_tv_charge_title"
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:textSize="20dp"
  38. android:text="用户中心"
  39. android:maxLength="8"
  40. android:layout_centerInParent="true"
  41. android:textColor="@android:color/white"/>
  42. <ImageView
  43. android:id="@+id/huo_sdk_iv_cancel"
  44. android:layout_width="wrap_content"
  45. android:layout_height="40dp"
  46. android:paddingTop="12dp"
  47. android:paddingBottom="12dp"
  48. android:paddingRight="24dp"
  49. android:paddingLeft="20dp"
  50. android:layout_alignParentRight="true"
  51. android:layout_centerVertical="true"
  52. android:layout_marginLeft="5dip"
  53. android:gravity="center"
  54. android:src="@drawable/huouniongame_sdk_float_ic_action_cancel" />
  55. </RelativeLayout>
  56. <WebView
  57. android:id="@+id/huo_sdk_wv_content"
  58. android:layout_width="fill_parent"
  59. android:layout_height="fill_parent"
  60. android:background="#00ffffff"
  61. android:layout_below="@id/huo_sdk_rl_top"
  62. />
  63. </RelativeLayout>