notice_layout.xml 1.0 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/notice_layout"
  4. android:layout_width="match_parent"
  5. android:layout_height="wrap_content"
  6. android:padding="5dp"
  7. android:background="#f6ebbc">
  8. <LinearLayout
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:layout_centerInParent="true"
  12. android:orientation="horizontal">
  13. <TextView
  14. android:id="@+id/notice_content"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"/>
  17. <TextView
  18. android:id="@+id/notice_content_extra"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_marginLeft="@dimen/page_margin"
  22. android:text="@string/group_apply_click_handle"
  23. android:textColor="@color/font_blue"/>
  24. </LinearLayout>
  25. </RelativeLayout>