Kotlin:滚动显示/隐藏BottomNavigationView

时间:2018-09-19 19:59:53

标签: android kotlin bottomnavigationview

我已经实现了 BottomNavigationView ,我想隐藏滚动菜单。

在MainActivity中

private val mOnNavigationItemSelectedListener = BottomNavigationView.OnNavigationItemSelectedListener { item ->
        when (item.itemId) {
            R.id.navigation_home -> {
                switchFragment(ActivitiesFragment.newInstance(), ActivitiesFragment.TAG)
                return@OnNavigationItemSelectedListener true
            }
            R.id.navigation_dashboard -> {
                switchFragment(FavoritesFragment.newInstance(), FavoritesFragment.TAG)
                return@OnNavigationItemSelectedListener true
            }
            R.id.navigation_notifications -> {
                switchFragment(MapFragment.newInstance(), MapFragment.TAG)
                return@OnNavigationItemSelectedListener true
            }
        }
        false
    }

我的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/main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/navigation"
        android:layout_below="@+id/main"/>

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/navigation"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="0dp"
        android:layout_marginStart="0dp"
        android:background="?android:attr/windowBackground"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/navigation" />

</android.support.constraint.ConstraintLayout>

到目前为止,我已经找到了如何使用java来实现功能的方法,但是我想知道实现这种动画的正确过程是什么。

  

注意:Android支持版本27.1.1

1 个答案:

答案 0 :(得分:0)

当您将代码粘贴到其中时,Jetbrains IDE可以自动将Java转换为Kotlin。尝试使用Java代码或尝试使用Hide/Show bottomNavigationView on Scroll