美文网首页Android技术研究
GridLayoutManager 不居中对齐问题

GridLayoutManager 不居中对齐问题

作者: 浩运 | 来源:发表于2016-10-31 20:03 被阅读6231次
    Paste_Image.png

    蛋疼的问题,右边留空那么多。

    <android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent" android:layout_height="wrap_content"
        android:background="#ff0"
        >
    
    </android.support.v7.widget.RecyclerView>
    

    item项的布局如下:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:orientation="vertical" android:layout_width="wrap_content"
        android:background="#f0f"
        android:gravity="center"
        android:layout_height="wrap_content">
    
        <ImageView
            android:layout_width="52dp"
            android:layout_height="52dp"
            app:srcCompat="@mipmap/home_new"
            android:id="@+id/iv_icon" />
    
        <TextView
            android:text="TextView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="14sp"
            android:textColor="#4A4A4A"
            android:layout_marginTop="10dp"
            android:id="@+id/tv_name" />
    </LinearLayout>
    

    设置GridLayoutManager 设置一行显示4个

                    GridLayoutManager  gridLayoutManager = new GridLayoutManager(container.getContext(), 4);
                    recyclerView.setLayoutManager(gridLayoutManager);//一行显示4个
    

    效果就成上面那样蛋疼了,经分析后,发现调整下item的根LinearLayout 的宽属性即可

    android:layout_width="match_parent"
    
    Paste_Image.png

    效果如下

    Paste_Image.png

    若需要间距,就配置一下ItemDecoration


    Paste_Image.png
        class MarginDecoration extends RecyclerView.ItemDecoration {
            private int margin;
    
            public MarginDecoration(Context context) {
                margin = PxUtils.dpToPx(10,context);
            }
    
            @Override
            public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
                outRect.set(margin, margin, margin, margin);
            }
        }
    

    相关文章

      网友评论

      • 汪简书:感谢LZ,子空间居中也是很重要的
        ```
        android:layout_centerInParent="true"
        ```
        denglxsc:点睛之笔啊老铁,我找了好久都没找到解决办法,大赞~~
        fb5fbf432e63:谢谢大神

      本文标题:GridLayoutManager 不居中对齐问题

      本文链接:https://www.haomeiwen.com/subject/ramputtx.html