fragment_document.xml 1006 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/background_color"
  7. tools:context=".ui.announcement.AnnouncementFragment">
  8. <LinearLayout
  9. android:id="@+id/add_itinerary_title"
  10. android:layout_width="match_parent"
  11. android:layout_height="@dimen/title_height"
  12. android:background="@color/title_background_color"
  13. android:orientation="vertical">
  14. <TextView
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_gravity="center"
  18. android:layout_marginTop="@dimen/title_margin_top"
  19. android:text="文档"
  20. android:textColor="@color/white"
  21. android:textSize="@dimen/text_size_large" />
  22. </LinearLayout>
  23. </FrameLayout>