5

我正在使用 roughike 的 BottomBar 2.0:https ://github.com/roughike/BottomBar/

当我显示 SnackBar 时,它会显示在 BottomBar 本身。

我希望它被绘制在底部栏上方。

活动主.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main_activity"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/here"
        android:background="#fff">

        <FrameLayout
            android:id="@+id/contentContainer"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_above="@+id/bottomBar">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textAppearance="?android:attr/textAppearanceLarge"
                android:text="Three Buttons Bar"
                android:id="@+id/textView"
                android:layout_centerVertical="true"
                android:layout_centerHorizontal="true"
                android:textColor="@color/colorPrimary"
                android:textSize="35sp" />

        </FrameLayout>

        <com.roughike.bottombar.BottomBar
            android:id="@+id/bottomBar"
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:layout_alignParentBottom="true"
            app:bb_tabXmlResource="@xml/bottombar_tabs" />
    </RelativeLayout>

</android.support.design.widget.CoordinatorLayout>

MainActivity.java:

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        BottomBar bottomBar = (BottomBar) findViewById(R.id.bottomBar);
        bottomBar.setOnTabSelectListener(new OnTabSelectListener() {
            @Override
            public void onTabSelected(int tabId) {
                switch (tabId) {
                    case R.id.recent_item:
                        Snackbar.make(findViewById(R.id.main_activity), "Recent Item Selected", Snackbar.LENGTH_LONG).show();
                        break;
                    case R.id.favorite_item:
                        Snackbar.make(findViewById(R.id.main_activity), "Favorite Item Selected", Snackbar.LENGTH_LONG).show();
                        break;
                    case R.id.location_item:
                        Snackbar.make(findViewById(R.id.main_activity), "Location Item Selected", Snackbar.LENGTH_LONG).show();
                        break;
                }
            }
        });
    }
}

截图:

仅底部栏 当 SnackBar 出现时,BottomBar 隐藏

布局文件有什么问题吗?
我错过了什么??

我也检查了这个:将snackbar移到底部栏上方,但没有帮助..

编辑:

我尝试了 Abtin 说的

Snackbar.make(bottomBar, "Location Item Selected", Snackbar.LENGTH_LONG).show();

<com.roughike.bottombar.BottomBar
            android:id="@+id/bottomBar"
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:layout_alignParentBottom="true"
            app:bb_tabXmlResource="@xml/bottombar_tabs"
            app:bb_behavior="underNavbar"/>

现在变成了这样:

底部栏下方有额外空间 被小吃店填满的空间

如您所见,当我设置时,BottomBar 下方有这个未使用的空间app:bb_behavior="underNavbar",这不是我想要的..

4

6 回答 6

10

有了新的材料设计,Snackbars 有了新的外观.. 你可以在 BottomBar 上方显示这条线:

Snackbar snackbar = Snackbar.make(parentView, text, duration);
snackbar.setAnchorView(bottomBar);

这将完成工作。

于 2019-09-10T08:23:16.403 回答
6

您应该在 xml 中创建 CoordinatorLayout,您希望从底部显示 SnackBar,并将 CoordinatorLayout 的 id 作为 View 的 id 在 fun。制作 SnackBar。

    <android.support.design.widget.CoordinatorLayout
        android:id="@+id/viewSnack"
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="50dp"/>

内部活动:

Snackbar.make(findViewById(R.id.viewSnack), "Text of the SnackBar", Snackbar.LENGTH_LONG).show();
于 2017-03-30T15:37:43.847 回答
0

根据协调器布局行为的实现方式,您可能必须将底栏视图本身传递给Snackbar.make().

Snackbar.make(bottomBar, "Location Item Selected", Snackbar.LENGTH_LONG).show();

另一种可能性是您app:bb_behavior在布局中的底部栏小部件上缺少一个属性。

于 2016-10-17T18:56:29.900 回答
0

尝试更改您传递给小吃店的视图。

Snackbar.make(findViewById(R.id.contentContainer), "Recent Item Selected", Snackbar.LENGTH_LONG).show();    
于 2016-10-17T18:05:20.317 回答
0

这很简单!在您的activity_main.xml中为您的根布局声明一个 ID:

<LinearLayout 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"
android:orientation="vertical"
android:id="@+id/linerMain">

然后在Snackbar 的视野中如下所示:

Snackbar snackbar = Snackbar.make(findViewById(R.id.linerMain),"name",Snackbar.LENGTH_INDEFINITE);
于 2020-06-25T09:06:52.447 回答
0

我从Roughike 的 BottomBar 2.0切换到Roughike 的 BottomBar 1.4 ..

现在它按预期工作(当然代码更改)..

我也试过AHBottomNavigation,它很酷,也可以按预期工作..

我没有将此标记为答案,因为它没有回答问题;)

于 2016-10-18T07:10:27.657 回答