RecyclerVIEw位于工具栏下方,但不应该.
问题:如何实现RecyclerVIEw和工具栏有一个边框?
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>
maschine_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>解决方法 将您的代码更改为:
<?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> <androID.support.v7.Widget.RecyclerVIEw androID:ID="@+ID/recycler_vIEw" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" app:layout_behavior = "@string/appbar_scrolling_vIEw_behavior" /></androID.support.design.Widget.CoordinatorLayout>总结
以上是内存溢出为你收集整理的android – RecyclerView位于工具栏下方全部内容,希望文章能够帮你解决android – RecyclerView位于工具栏下方所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)