mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-02-01 03:09:22 +00:00
36 lines
No EOL
1.5 KiB
XML
36 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentBottom="true">
|
|
|
|
<!-- For proper snack bar placement -->
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:id="@+id/coordinator"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_above="@id/tabs_fragment">
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/nav_host_fragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
app:defaultNavHost="true"
|
|
app:navGraph="@navigation/main_nav_graph"
|
|
tools:layout="@layout/dialer_fragment" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/tabs_fragment"
|
|
android:name="org.linphone.activities.main.fragments.TabsFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/main_activity_tabs_fragment_size"
|
|
android:layout_alignParentBottom="true"
|
|
tools:layout="@layout/tabs_fragment"/>
|
|
|
|
</RelativeLayout> |