123456789101112131415161718192021 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- tools:context=".ui.group_invite_official.invite_data.InviteDataActivity">
- <include
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- layout="@layout/layout_title" />
- <androidx.fragment.app.FragmentContainerView
- android:id="@+id/invite_data_fragment_container"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- tools:layout="@layout/fragment_invite_data_search" />
- </LinearLayout>
|