pb_account_web.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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="#FFFFFF"
  6. android:orientation="horizontal">
  7. <LinearLayout
  8. android:id="@+id/pb_account_bottom"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:background="#FFFFFF"
  12. android:orientation="vertical">
  13. <RadioGroup
  14. android:id="@+id/pb_rg"
  15. android:layout_width="wrap_content"
  16. android:layout_height="match_parent"
  17. android:gravity="center_vertical"
  18. android:paddingTop="10dp"
  19. android:orientation="vertical">
  20. <RadioButton
  21. android:id="@+id/pb_btn_hot"
  22. style="@style/radiostyle"
  23. android:padding="10dp"
  24. android:background="#FFFFFF"
  25. android:checked="true"
  26. android:drawableTop="@drawable/pb_home_hots_on"
  27. android:text="热点" />
  28. <RadioButton
  29. android:id="@+id/pb_btn_libao"
  30. style="@style/radiostyle"
  31. android:background="#FFFFFF"
  32. android:padding="10dp"
  33. android:drawableTop="@drawable/pb_home_gifts_on"
  34. android:text="礼包" />
  35. <RadioButton
  36. android:id="@+id/pb_btn_gonglue"
  37. style="@style/radiostyle"
  38. android:background="#FFFFFF"
  39. android:padding="10dp"
  40. android:drawableTop="@drawable/pb_home_gonglue_on"
  41. android:text="攻略" />
  42. <RadioButton
  43. android:id="@+id/pb_btn_account"
  44. style="@style/radiostyle"
  45. android:background="#FFFFFF"
  46. android:padding="10dp"
  47. android:drawableTop="@drawable/pb_home_account_on"
  48. android:text="账号" />
  49. </RadioGroup>
  50. </LinearLayout>
  51. <View
  52. android:id="@+id/pb_line"
  53. android:layout_width="0.1dp"
  54. android:layout_height="match_parent"
  55. android:background="@color/pb_line" />
  56. <WebView
  57. android:id="@+id/pb_account_webview"
  58. android:layout_width="match_parent"
  59. android:layout_height="match_parent"></WebView>
  60. </LinearLayout>