gpt4 book ai didi

android - RecyclerView 位于工具栏下方

转载 作者:太空宇宙 更新时间:2023-11-03 11:42:30 24 4
gpt4 key购买 nike

问题:我在CoordinatorLayout 中有一个RecyclerView 和一个ToolbarRecyclerView 位于 Toolbar 下方,但它不应该。

enter image description here

问题:如何实现RecyclerViewToolbar只有一个边框?

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:fitsSystemWindows="true">

<android.support.design.widget.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar">

<include
android:id="@+id/toolbar_main"
layout="@layout/toolbar"></include>

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

<FrameLayout
android:id="@+id/maschinelistcontainer"
android:layout_width="match_parent"
android:layout_height="match_parent" />

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

ma​​schine_fragment.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:scrollbars="vertical" />

</LinearLayout>

最佳答案

只需将以下行添加到您的父布局,即 maschine_fragment.xmlLinearlayout

xmlns:app="http://schemas.android.com/apk/res-auto"
app:layout_behavior="@string/appbar_scrolling_view_behavior"

或者将此行添加到 activity_main.xml 的 Framelayout 中

app:layout_behavior="@string/appbar_scrolling_view_behavior"

它会为你工作! :)

关于android - RecyclerView 位于工具栏下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37677035/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com