Recycler View出现在自定义工具栏

时间:2017-07-10 12:43:53

标签: android android-recyclerview toolbar

main_activity.xml //实施Recycler视图的主要活动

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/activity_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"

        tools:context="com.umairahmed.inventory.MainActivity">

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


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

       </android.support.v7.widget.RecyclerView>
    </RelativeLayout>

list_items.xml //循环器视图中出现的数字列表

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent" android:layout_height="wrap_content"
        android:padding="16dp"
        xmlns:app="http://schemas.android.com/apk/res-auto"
           >
        <TextView

            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/tv_item_number"
            android:fontFamily="monospace"
            android:textSize="40sp"

            />

        <!--style="@style/TextAppearance.AppCompat.Title"-->

    </LinearLayout>

toobar.xml是我的自定义工具栏

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent" android:layout_height="wrap_content"
    android:background="@color/colorPrimary"
    android:elevation="5dp"
    android:theme="@style/ThemeOverlay.AppCompat.Dark"
    android:id="@+id/toolbar">
    <!--android:layout_alignParentBottom="true"-->



</android.support.v7.widget.Toolbar>

我不知道如何使回收站视图显示在我的自定义工具栏下方。

1 个答案:

答案 0 :(得分:0)

 <android.support.v7.widget.RecyclerView
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:id="@+id/recyeler_view"
       android:scrollbars="vertical"
android:layout_below= "@id:toolbar"/>