最近在项目中写一个GridLayout样式的RecyclerView时需要设置,item之间左右的间距,比较坑的是在item布局文件中写间距时,在模拟器上能正常显示,但在真机上无效果。后来找到了解决方法,在这里和大家分享,入门第一次写博客,格式比较混乱,请谅解。
如常见写法:
(1)recyclerView_content.xml下:
<?xml version="1.0" encoding="utf-8"?>
<LinerLayout 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.oak.learnrecyclerview.MainActivity">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/rv">
</android.support.v7.widget.RecyclerView>
</LinerLayout>