2019-11-14 14:35:08 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-02-24 13:40:28 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-11-14 14:35:08 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2022-02-24 13:40:28 -04:00
|
|
|
android:orientation="vertical">
|
2019-11-14 14:35:08 -05:00
|
|
|
|
2022-03-18 13:03:06 -03:00
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:name="org.thoughtcrime.securesms.main.MainActivityListHostFragment"
|
2022-02-24 13:40:28 -04:00
|
|
|
android:id="@+id/fragment_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
tools:context=".MainActivity" />
|
|
|
|
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/conversation_list_tabs"
|
|
|
|
android:name="org.thoughtcrime.securesms.stories.tabs.ConversationListTabsFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</LinearLayout>
|