48 lines
2 KiB
XML
48 lines
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_above="@id/inboxNavBar" />
|
|
|
|
<nl.joery.animatedbottombar.AnimatedBottomBar
|
|
android:id="@+id/inboxNavBar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="72dp"
|
|
android:layout_gravity="center_horizontal|bottom"
|
|
android:background="?attr/colorSurface"
|
|
android:padding="0dp"
|
|
app:abb_animationInterpolator="@anim/over_shoot"
|
|
app:abb_indicatorAppearance="round"
|
|
app:abb_indicatorLocation="top"
|
|
app:abb_selectedTabType="text"
|
|
app:abb_textAppearance="@style/NavBarText"
|
|
app:itemActiveIndicatorStyle="@style/BottomNavBar"
|
|
app:itemIconTint="@color/tab_layout_icon"
|
|
app:itemRippleColor="#00000000"
|
|
app:itemTextAppearanceActive="@style/NavBarText"
|
|
app:itemTextAppearanceInactive="@style/NavBarText"
|
|
app:itemTextColor="@color/tab_layout_icon" />
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/feedFragment"
|
|
android:name="ani.dantotsu.inbox.FeedFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="gone" />
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/notifsFragment"
|
|
android:name="ani.dantotsu.inbox.NotifsFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:visibility="gone" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|