我在"app:layout_behavior="@string/appbar_scrolling_view_behavior"
中尝试了content layout
之类的内容,但在我的情况下,我内容布局的recyclerview
会在工具栏中显示出来。如何让工具栏完全覆盖其他内容?
答案 0 :(得分:0)
这是我的工具栏
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:id="@+id/logobar">
<ImageView
android:id="@+id/tv_header_title"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/logo"
android:layout_gravity="center"
/>
</android.support.v7.widget.Toolbar>
这是我的回收商布局
<RelativeLayout 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:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="2">
<!--android:background="@color/backgroundColor"-->
<include
layout="@layout/logobar_layout"
></include>
<android.support.v7.widget.RecyclerView
android:layout_marginTop="-100dp"
android:clipToPadding="false"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/recyclerView"
android:paddingBottom="?attr/actionBarSize"
>
></android.support.v7.widget.RecyclerView>
<include
layout="@layout/toolbar_layout"
></include>
</RelativeLayout>