片段内容重叠工具栏和底部导航视图
Posted
技术标签:
【中文标题】片段内容重叠工具栏和底部导航视图【英文标题】:Fragment Content Overlaps Toolbar and Bottom Navigation View 【发布时间】:2018-11-04 14:01:48 【问题描述】:我在我的 android 应用程序中实现了底部导航视图。有五个碎片。但是,我有一个问题,每次更改片段时,片段的内容都会与工具栏重叠。
底部导航视图的布局
<?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:layout_
android:layout_
tools:context=".DashboardActivity">
<include layout="@layout/toolbar"
android:layout_
android:layout_>
</include>
<FrameLayout
android:id="@+id/container"
android:layout_
android:layout_above="@+id/navigationView"
android:layout_
/>
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigationView"
android:layout_
android:layout_
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:itemBackground="@android:color/white"
app:itemIconTint="@color/cardview_dark_background"
app:itemTextColor="@android:color/black"
app:menu="@menu/navigation_menu"
/>
</android.support.constraint.ConstraintLayout>
片段布局之一的示例
<?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/frameLayout"
android:layout_
android:layout_
tools:context=".AttendanceFragment">
<android.support.constraint.Guideline
android:id="@+id/guideline"
android:layout_
android:layout_
android:orientation="vertical"
app:layout_constraintGuide_percent="0.7" />
<android.support.v7.widget.CardView
android:id="@+id/cardView2"
android:layout_
android:layout_
app:layout_constraintBottom_toTopOf="@+id/barrier3"
app:layout_constraintEnd_toStartOf="@+id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<Spinner
android:id="@+id/spinner_courses"
android:layout_
android:layout_
android:layout_marginStart="8dp"
android:paddingBottom="4dp"
android:paddingTop="4dp"
app:layout_constraintEnd_toStartOf="@+id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.v7.widget.CardView>
<TextView
android:id="@+id/tv_time"
android:layout_
android:layout_
android:gravity="center"
android:textColor="@color/colorPrimaryDark"
android:textSize="12sp"
app:layout_constraintBottom_toTopOf="@+id/barrier3"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/guideline"
app:layout_constraintTop_toTopOf="parent"
tools:text="Date" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/add_fab"
android:layout_
android:layout_
android:layout_gravity="bottom|right"
android:layout_margin="16dp"
android:src="@drawable/ic_add_icon"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"/>
<!--<android.support.design.widget.FloatingActionButton
android:id="@+id/floatingActionButton"
android:layout_
android:layout_
android:layout_marginBottom="4dp"
android:layout_marginEnd="8dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="4dp"
android:clickable="true"
app:srcCompat="@drawable/ic_more_vert_black_24dp"
app:fabSize="mini"
app:layout_constraintBottom_toBottomOf="@+id/textView3"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/spinner"
app:layout_constraintTop_toTopOf="parent"
android:focusable="true" />-->
<android.support.constraint.Barrier
android:id="@+id/barrier3"
android:layout_
android:layout_
app:barrierDirection="bottom"
app:constraint_referenced_ids="cardView2,tv_time"
tools:layout_editor_absoluteY="511dp" />
<android.support.v7.widget.CardView
android:layout_
android:layout_
android:layout_marginTop="4dp"
app:cardBackgroundColor="@color/colorMainBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/barrier3">
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_register"
android:layout_
android:layout_>
</android.support.v7.widget.RecyclerView>
</android.support.v7.widget.CardView>
</android.support.constraint.ConstraintLayout>
这是屏幕重叠内容的样子
【问题讨论】:
将上面xml中的ConstraintLayout改为CoordinatorLayout,然后在第二个xml的ConstraintLayout中添加app:layout_behavior="@string/appbar_scrolling_view_behavior"
【参考方案1】:
向容器添加边距:
<FrameLayout
android:id="@+id/container"
android:layout_
android:layout_above="@+id/navigationView"
android:layout_
android:layout_marginBottom="bottom_navigation_height"
android:layout_marginTop="tool_bar_height"
/>
【讨论】:
我认为这是一个荒谬的解决方案(不是因为你建议它,只是因为它是必要的)。我在这个线程中尝试了其他所有方法(我不知道,“0dp”高度对我来说只是让事情消失了哈哈)但这是唯一有效的方法。真的很愚蠢,我必须手动指定一个边距才能让它看起来正确。而且它在一个Activity和Fragment中,和我的MainActivity完全一样,没有这个问题。唯一的区别是我的 MainActivity 有一个带有 RecyclerView 的片段,而不是像第二个 Activity/Fragment 这样的 EditText/TextView 小部件。 FWIW,对于我的应用程序工具栏的“include”,我添加了“android:layout_?attr /actionBarSize"【参考方案2】:我从我的 ConstraintLayout 中删除了默认生成的 marginTop
字段,并将我的片段的 layout_height
更改为 0dp。然后在我所有 Fragments 的布局中最外层的 layout_height
我总是设置为匹配父级。
<?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"
android:id="@+id/container"
android:layout_
android:layout_>
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/nav_view"
android:layout_
android:layout_
android:layout_marginStart="0dp"
android:layout_marginEnd="0dp"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/bottom_nav_menu" />
<fragment
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_
android:layout_
app:defaultNavHost="true"
app:layout_constraintBottom_toTopOf="@id/nav_view"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
【讨论】:
我将片段的layout_height
更改为0dp
,它就像一个魅力。谁能解释为什么它可以解决这个问题?
这应该是公认的答案!!【参考方案3】:
你应该为你的@id/container 添加约束。 到您的工具栏的顶部,到底部的底部导航栏。你也应该对这些元素做同样的事情。工具栏顶部到父级,工具栏底部到容器。 BottomNavigationBar 顶部到容器,底部到父级。然后将容器的高度设置为0dp。
<include layout="@layout/toolbar"
android:id="@+id/toolbar"
android:layout_
android:layout_
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"/>
<FrameLayout
android:id="@+id/container"
android:layout_
android:layout_
app:layout_constraintBottom_toBottomOf="@+id/navigationView"
app:layout_constraintTop_toTopOf="@id/toolbar"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"/>
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigationView"
android:layout_
android:layout_
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>
没有测试代码,但应该可以工作。
【讨论】:
【参考方案4】:它是重叠的,因为您没有对控件进行适当的约束。
你可以试试这个方法。
<?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:layout_
android:layout_>
<include
android:id="@+id/include"
layout="@layout/toolbar"
android:layout_
android:layout_
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<FrameLayout
android:id="@+id/container"
android:layout_
android:layout_
app:layout_constraintBottom_toTopOf="@+id/navigationView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/include" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigationView"
android:layout_
android:layout_
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:itemBackground="@android:color/white"
app:itemIconTint="@color/cardview_dark_background"
app:itemTextColor="@android:color/black"
app:menu="@menu/navigation_menu"
/>
</android.support.constraint.ConstraintLayout>
【讨论】:
【参考方案5】:在Recent Android Studio Versions(4.0.beta 1)中,如果默认生成activity_main.xml
(属性省略)上的层次结构如下,
<androidx.constraintlayout.widget.ConstraintLayout>
<com.google.android.material.bottomnavigation.BottomNavigationView />
<fragment />
</androidx.constraintlayout.widget.ConstraintLayout>
片段似乎与底部导航重叠,只是重新排列如下所示,
<androidx.constraintlayout.widget.ConstraintLayout>
<fragment />
<com.google.android.material.bottomnavigation.BottomNavigationView />
</androidx.constraintlayout.widget.ConstraintLayout>
为我解决了这个问题没有触及任何约束,也没有添加任何填充或边距
【讨论】:
【参考方案6】:您的片段容器使用了“match_parent”,它占据了工具栏和导航栏的位置,也许您可以选择嵌套的LinearLayout并使用height=warp_content,weight=1
【讨论】:
以上是关于片段内容重叠工具栏和底部导航视图的主要内容,如果未能解决你的问题,请参考以下文章