单击BottomNavView项目后,BottomNavigationView会减小尺寸吗?

时间:2019-03-27 14:54:34

标签: android android-fragments bottomnavigationview

当我单击底部导航项时,BottomNavigationView大小会自动减小。仅当控件从首页项目转移到其他项目时才发生。当我第三次单击任何其他项目时,它会自动恢复为原始大小。

。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。 。

 BottomNavigationView bottomNavigationView = findViewById(R.id.bottom_nav_view);
        bottomNavigationView.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() {
            @Override
            public boolean onNavigationItemSelected(@NonNull MenuItem menuItem) {
                Fragment selectedFragment = null;


                switch (menuItem.getItemId()){
                    case R.id.home_bottom_nav:
                        selectedFragment = new HomeFragment();
                        break;
                    case R.id.game_bottom_nav:
                        selectedFragment = new GameFragment();
//                        selectedFragment = GameFragment.newInstance("Para1","Para2");
                        break;
                    case R.id.even_bottom_nav:
                        selectedFragment = new EventFragment();
                        break;
                    case R.id.profile_bottom_nav:
                        selectedFragment = new ProfileFragment();
                        break;
                }

                assert selectedFragment != null;
                getSupportFragmentManager().beginTransaction().replace(R.id.fragmentLayout,selectedFragment)
                        .commit();

                return true;
            }
        });

        getSupportFragmentManager().beginTransaction().replace(R.id.fragmentLayout,new HomeFragment()).commit();

XML代码

<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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".HomeActivity">

    <FrameLayout
        android:id="@+id/fragmentLayout"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintBottom_toTopOf="@+id/bottom_nav_view"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/bottom_nav_view"
        android:layout_width="match_parent"
        android:layout_height="56dp"
        android:background="?android:attr/windowBackground"
        app:itemTextAppearanceActive="@style/Widget.BottomNavigationView"
        app:labelVisibilityMode="labeled"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:menu="@menu/bottom_nav_items" />

</android.support.constraint.ConstraintLayout>

enter image description here

enter image description here

enter image description here

3 个答案:

答案 0 :(得分:0)

您可以这样交叉检查您的BottomNavigaionView吗:使用wrap_content和alignParentBottom。尝试将FrameLayout的高度更改为wrap_content并删除以下行app:layout_constraintEnd_toEndOf =“ parent”

<com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/bottom_navigation"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:background="#ffffff"
    app:labelVisibilityMode="labeled"
    app:menu="@menu/menu_buttom_navigation" />

答案 1 :(得分:0)

  

更改xml底部导航和framlayout宽度0dp。还给出了底部导航的顶部约束和高度wrap_content。

<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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".HomeActivity">

    <FrameLayout
        android:id="@+id/fragmentLayout"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toTopOf="@+id/bottom_nav_view"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/bottom_nav_view"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="?android:attr/windowBackground"
        app:itemTextAppearanceActive="@style/Widget.BottomNavigationView"
        app:labelVisibilityMode="labeled"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/fragmentLayout"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:menu="@menu/bottom_nav_items" />

</android.support.constraint.ConstraintLayout>

答案 2 :(得分:0)

尝试一下

<android.support.design.widget.BottomNavigationView
        android:id="@+id/bottom_nav_view"
        android:layout_width="0dp"
        android:layout_height="56dp"
        android:background="?android:attr/windowBackground"
        app:itemTextAppearanceActive="@style/Widget.BottomNavigationView"
        app:labelVisibilityMode="labeled"
        app:menu="@menu/bottom_nav_items"

        app:itemHorizontalTranslationEnabled="false"
        app:itemTextAppearanceInactive="@style/Widget.BottomNavigationView"

        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
 />