activity_group_info.xml 757 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout 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/white"
  7. android:orientation="vertical">
  8. <include
  9. layout="@layout/layout_title"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content" />
  12. <androidx.fragment.app.FragmentContainerView
  13. android:id="@+id/group_information_container"
  14. android:layout_width="match_parent"
  15. android:layout_height="0dp"
  16. android:layout_weight="1"
  17. tools:layout="@layout/fragment_group_info_search" />
  18. </LinearLayout>