activity_invite_data.xml 800 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:orientation="vertical"
  7. tools:context=".ui.group_invite_official.invite_data.InviteDataActivity">
  8. <include
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. layout="@layout/layout_title" />
  12. <androidx.fragment.app.FragmentContainerView
  13. android:id="@+id/invite_data_fragment_container"
  14. android:layout_width="match_parent"
  15. android:layout_height="0dp"
  16. android:layout_weight="1"
  17. tools:layout="@layout/fragment_invite_data_search" />
  18. </LinearLayout>