在运行我的应用程序后,我在RecyclerVIEw项之间的差距很大!
这是我的代码在这里:Github
Large gap between recyclerview items
解决方法:
像这样更改您的布局
activity_main.xml中
<?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:layout_wIDth="match_parent"androID:layout_height="match_parent"tools:context="com.breuhteam.recyclervIEw.MainActivity"><androID.support.v7.Widget.RecyclerVIEw androID:ID="@+ID/recycler_vIEw" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:scrollbars="vertical" /></relativeLayout>
vIEw_item.xml
<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:layout_wIDth="match_parent"androID:layout_height="wrap_content"><ImageVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:ID="@+ID/itemVIEw" androID:src="@drawable/diy" androID:layout_margin="1dp" androID:adjustVIEwBounds="true"/></relativeLayout>
总结 以上是内存溢出为你收集整理的android-RecyclerView项之间的差距很大全部内容,希望文章能够帮你解决android-RecyclerView项之间的差距很大所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)