cyrechargewebview.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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="match_parent"
  5. android:background="@color/qyfont_white"
  6. android:orientation="vertical" >
  7. <!-- header -->
  8. <RelativeLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="50dp"
  11. android:background="@drawable/cy_logintip" >
  12. <LinearLayout
  13. android:id="@+id/web_backbtn"
  14. android:layout_width="30dp"
  15. android:layout_height="30dp"
  16. android:layout_centerVertical="true"
  17. android:layout_marginLeft="5dp"
  18. android:clickable="true"
  19. android:gravity="center" >
  20. <ImageView
  21. android:layout_width="45dp"
  22. android:layout_height="45dp"
  23. android:background="@drawable/cy_back"
  24. />
  25. </LinearLayout>
  26. <TextView
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:layout_centerHorizontal="true"
  30. android:layout_centerVertical="true"
  31. android:text="充值中心"
  32. android:textColor="@color/qyfont_black"
  33. android:textSize="22sp" />
  34. </RelativeLayout>
  35. <WebView
  36. android:id="@+id/webview"
  37. android:layout_width="match_parent"
  38. android:layout_height="match_parent" />
  39. </LinearLayout>