5

Roughike の BottomBar 2.0 を使用しています: https://github.com/roughike/BottomBar/

SnackBar を表示すると、BottomBar 自体に表示されます。

BottomBar の上に描画したい。

activity_main.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 が非表示になる

レイアウトファイルに何か問題がありますか??
何が足りないの??

これも確認しました:スナックバーを下のバーの上に移動しますが、役に立ちませんでした..

編集:

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

0

コーディネーター レイアウト動作の実装方法によっては、ボトム バー ビュー自体を の最初の引数に渡す必要がある場合がありますSnackbar.make()

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

app:bb_behaviorもう 1 つの可能性は、レイアウト内のbottombar ウィジェットの属性が欠落していることです。

于 2016-10-17T18:56:29.900 に答える
0

Roughike's BottomBar 2.0からRoughike's BottomBar 1.4に切り替えました。

意図したとおりに動作するようになりました (もちろん、コードは変更されます)。

AHBottomNavigationも試してみましたが、クールで、意図したとおりに機能しています..

質問に答えていないので、これを回答としてマークしていません;)

于 2016-10-18T07:10:27.657 に答える