因此,我使用此库BottomBar在我的应用顶部显示工具栏类型的视图。如下图所示,操作栏和底栏之间出现了一个奇怪的填充(忽略浮动操作按钮):
这是我的布局xml文件:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.roughike.bottombar.BottomBar
android:id="@+id/bottomBar"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"
app:bb_behavior="shifting"
app:bb_activeTabColor="#000000"
app:bb_inActiveTabColor="#FFFFFF"
app:bb_tabXmlResource="@xml/bottom_bar" />
<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/movie_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="60dp"/>
<android.support.design.widget.FloatingActionButton
android:layout_margin="18dp"
android:id="@+id/fab"
android:src="@drawable/create"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_marginBottom="60dp"
android:layout_height="wrap_content"
app:backgroundTint="#A52A2A"
app:borderWidth="0dp"
app:elevation="8dp"
app:layout_anchor="@id/movie_recycler_view"
app:layout_anchorGravity="bottom|right|end" />
我已尝试将操作栏填充设置为0dp,底部填充0dp,禁用操作栏阴影等,但无效。关于如何解决这个问题的任何想法?
答案 0 :(得分:1)
好的,我已经找到了解决方案。这是图书馆的错误......
基本上,库需要一个特殊参数:app:bb_showShadow="false"
来禁用阴影。