act_notice.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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:orientation="vertical">
  6. <include layout="@layout/title" />
  7. <LinearLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="0dp"
  10. android:layout_margin="@dimen/content_padding_10"
  11. android:layout_weight="1"
  12. android:background="@drawable/x_shap_shadow_bg_rectgangle_white"
  13. android:orientation="vertical"
  14. android:padding="@dimen/content_padding_10">
  15. <TextView
  16. android:id="@+id/act_notice_title_tv"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:layout_marginStart="2dp"
  20. android:text="@string/app_name"
  21. android:textColor="#444444"
  22. android:textSize="15sp" />
  23. <TextView
  24. android:id="@+id/act_notice_time_tv"
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:layout_marginStart="2dp"
  28. android:layout_marginTop="8dp"
  29. android:text="@string/app_name"
  30. android:textColor="#afafaf"
  31. android:textSize="12sp" />
  32. <TextView
  33. android:id="@+id/act_notice_content_tv"
  34. android:layout_width="match_parent"
  35. android:layout_height="wrap_content"
  36. android:layout_marginTop="16dp"
  37. android:lineSpacingExtra="5dp"
  38. android:scrollbars="vertical"
  39. android:text="@string/app_name"
  40. android:textColor="#939393"
  41. android:textSize="13sp" />
  42. <WebView
  43. android:id="@+id/act_notice_content_wb"
  44. android:layout_width="match_parent"
  45. android:layout_height="match_parent"/>
  46. </LinearLayout>
  47. <TextView
  48. android:id="@+id/act_notice_back_tv"
  49. style="@style/style_button"
  50. android:text="返回小绵羊" />
  51. </LinearLayout>