BottomNavigationView与活动

时间:2017-09-25 21:26:19

标签: android android-navigation bottomnavigationview

我正在使用BottomNavigationViewEx(BottomNavigationView具有非常好的功能)。我有布局,现在我想将此导航与我的活动“连接”。通常它与Fragments连接但我的所有活动都扩展了AppCompatActivity。

这是我的nav.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".ui.activity.RecipesActivity">

    <FrameLayout
        android:id="@+id/fragment_container"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toTopOf="@+id/navigation_view"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"/>

    <com.ittianyu.bottomnavigationviewex.BottomNavigationViewEx
        android:id="@+id/navigation_view"
        android:layout_width="0dp"
        android:layout_height="65dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:background="@color/colorPrimary"
        app:itemIconTint="@color/draw_item"
        app:itemTextColor="@color/draw_item"
        app:menu="@menu/nav_items" />

</android.support.constraint.ConstraintLayout>

如何在所有活动和设置中显示此导航单击项目上的监听器?我的导航中有五个项目,我想在单击项目1时显示活动1,等等。

1 个答案:

答案 0 :(得分:0)

我建议使用Fragments在标签之间切换。使用碎片时很少有专业人士:

  • 它可以防止破坏和创建活动以及屏幕闪烁。
  • 只容纳一个BottomNavigationView更容易。
  • 处理导航,保存和恢复状态的单一责任。