act_notice.xml 2.1 KB

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