activity_add_group_info.xml 825 B

12345678910111213141516171819202122
  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. tools:context=".ui.group_management.group_info.AddGroupInfoActivity">
  9. <include
  10. layout="@layout/layout_title"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content" />
  13. <androidx.fragment.app.FragmentContainerView
  14. android:id="@+id/add_group_info_container"
  15. android:layout_width="match_parent"
  16. android:layout_height="0dp"
  17. android:layout_weight="1"
  18. tools:layout="@layout/fragment_group_info_base" />
  19. </LinearLayout>