快餐栏没有出现在viewpager

时间:2016-01-24 14:43:58

标签: android android-snackbar

我正在尝试将小吃栏放在3个标签下面。我已经膨胀了一个片段并在其中实现了协调器布局。我无法在tabs上方显示小吃栏。而且getView()在浮动按钮上方的底部显示小吃栏代码How to show Snackbar at top of the screen在顶部显示我不想要的小吃吧。如何在片段中的标签下方显示小吃栏?

代码:

 Snackbar snackbar = Snackbar
                        .make(coordinatorLayout_snackbar, “Snackbar”, Snackbar.LENGTH_INDEFINITE)
                        .setAction(“click”, new View.OnClickListener() {
                            @Override
                            public void onClick(View view) {
                                Log.e(TAG, "button clicked");
                            }
                        });

                snackbar.show();

的xml:

<?xml version="1.0" encoding="utf-8"?>


<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:fab="http://schemas.android.com/apk/res-auto"
    android:id="@+id/frame_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.CoordinatorLayout
        android:id="@+id/coordinatorLayout_snackbar”
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true">
</android.support.design.widget.CoordinatorLayout>


    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipe_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">


        <android.support.v7.widget.RecyclerView
            android:id="@+id/recyclerview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scrollbars="vertical" />
    </android.support.v4.widget.SwipeRefreshLayout>

</FrameLayout>

1 个答案:

答案 0 :(得分:4)

你需要将你的SwipeRefreshLayout包装在CoordinatorLayout中,如下所示:

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:fab="http://schemas.android.com/apk/res-auto"
    android:id="@+id/coordinatorLayout_snackbar”
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipe_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recyclerview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scrollbars="vertical" />
    </android.support.v4.widget.SwipeRefreshLayout>

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

在当前布局中,SwipeRefreshLayout是在CoordinatorLayout上绘制的,它的高度为0,因为它没有子项,高度设置为wrap_content。