RecyclerView GridLayoutManager项match_parent width

时间:2017-10-05 13:00:46

标签: android android-recyclerview gridlayoutmanager

我有这样的回收者视图:

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

和这样的项目:

<?xml version="1.0" encoding="utf-8"?>
<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="match_parent"
   android:layout_height="wrap_content">

<ImageView
    android:layout_width="100dp"
    android:layout_height="70dp"
    android:scaleType="fitCenter"
    android:layout_margin="10dp" />

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="10dp"
    android:linksClickable="true" />

 </LinearLayout>

我在代码中这样做有一个包含2列的网格:

        GridLayoutManager gridLayoutManager = new GridLayoutManager(context, 2, LinearLayoutManager.VERTICAL,false);
        _recycler.setLayoutManager(gridLayoutManager);

我希望每个项目都可以使用“match_parent”空间,但事实并非如此!每个项目占用半空间。如何使用width =“match_parent”的项目以及水平滚动的可能性?

我想要这样的事情:

 screen

|------|

  ITEM1    - ITEM2
  ITEM3   - ITEM4

1 个答案:

答案 0 :(得分:0)

您无法水平匹配父级并使其水平滚动,您必须切换其中一个。要实现您想要的功能,您必须使用类似FiewFlipper或标签的内容。