Sha256: e7f6107cc150a047b61e19ec71e12a0dd4f99d206e5631771b2080e237d69aa5
Contents?: true
Size: 1.55 KB
Versions: 19
Compression:
Stored size: 1.55 KB
Contents
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout 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" tools:context=".main.MainActivity"> <ViewFlipper android:id="@+id/view_flipper" android:layout_width="match_parent" android:layout_height="0dp" app:layout_constraintBottom_toTopOf="@+id/bottom_navigation_view" app:layout_constraintTop_toTopOf="parent"> <androidx.fragment.app.FragmentContainerView android:id="@+id/tab_one_nav_host" android:name="<%= package_name %>.main.TabOneSessionNavHostFragment" android:layout_width="match_parent" android:layout_height="match_parent" /> <androidx.fragment.app.FragmentContainerView android:id="@+id/tab_two_nav_host" android:name="<%= package_name %>.main.TabTwoSessionNavHostFragment" android:layout_width="match_parent" android:layout_height="match_parent" /> </ViewFlipper> <com.google.android.material.bottomnavigation.BottomNavigationView android:id="@+id/bottom_navigation_view" android:layout_width="match_parent" android:layout_height="wrap_content" app:layout_constraintBottom_toBottomOf="parent" app:menu="@menu/bottom_navigation_menu" /> </androidx.constraintlayout.widget.ConstraintLayout>
Version data entries
19 entries across 19 versions & 1 rubygems