viewpager 内的片段 layout/recyclerview 上方未出现小吃栏
snackbar not appearing on top of fragment layout/recyclerview within viewpager
我正在尝试让 snackbar 低于 3 个选项卡。我已经膨胀了一个片段并在 that.I 中实现了协调器布局我无法在下面的顶部显示 snackbar tabs.And getView() 在浮动按钮上方的底部,此代码 How to show Snackbar at top of the screen 在我不想要的顶部显示小吃栏。如何让 snackbar 显示在 fragment 标签下方?
代码:
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>
您需要将 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 绘制在高度为 0 的 CoordinatorLayout 之上,因为它没有子项且高度设置为 wrap_content。
我正在尝试让 snackbar 低于 3 个选项卡。我已经膨胀了一个片段并在 that.I 中实现了协调器布局我无法在下面的顶部显示 snackbar tabs.And getView() 在浮动按钮上方的底部,此代码 How to show Snackbar at top of the screen 在我不想要的顶部显示小吃栏。如何让 snackbar 显示在 fragment 标签下方?
代码:
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>
您需要将 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 绘制在高度为 0 的 CoordinatorLayout 之上,因为它没有子项且高度设置为 wrap_content。