ANDROID:回收站视图中的多个卡片视图

时间:2015-09-10 02:23:03

标签: java android android-recyclerview android-cardview

请参见下图:

如何在Recycler View中插入多张卡片视图。 或任何其他方式来实现这一目标 必须使用Recycler视图。

enter image description here

4 个答案:

答案 0 :(得分:9)

我认为实现附图中描述的目标的正确方法是使用GridLayoutManager而不是RecyclerView.LayoutManagerLinearLayoutManager

我们在LayoutManager上附加的RecyclerView决定了列数。有3个子类。

  1. LinearLayoutManager
  2. GridLayoutmanger
  3. StaggeredGridLayoutmanger
  4. 在初始化RecyclerView.LayoutManager的活动中,更改

    RecyclerView.LayoutManager mLayoutManager = new LinearLayoutManger(this);
    

    GridLayoutManager mLayoutManager = new GridLayoutManger(this, 2);
    

    2是网格的跨度计数。每个项目将放置在一个范围内,因此您的回收站视图中将有2列。

答案 1 :(得分:3)

试试这个

    <?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:padding="8dp">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <android.support.v7.widget.CardView

            android:layout_width="match_parent"
            android:layout_weight="1"
            android:layout_height="300dp"
            android:orientation="vertical">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:src="@drawable/a"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Huming Bird"/>
        </android.support.v7.widget.CardView>
        <android.support.v7.widget.CardView
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:layout_height="wrap_content">
            <ImageView
                android:layout_width="match_parent"
                android:layout_height="300dp"
                android:src="@drawable/b"/>
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Huming Bird"/>
        </android.support.v7.widget.CardView>
    </LinearLayout>

</LinearLayout>

答案 2 :(得分:2)

你的xml可以这样做:

<LinearLayout 
            android:layout_width="match_parent" 
            android:layout_height="wrap_content"
            android:orientation="horizontal">
        <android.support.v7.widget.CardView
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="wrap_content">
        </android.support.v7.widget.CardView>
        <android.support.v7.widget.CardView
                android:layout_width="0dp"
                android:layout_weight="1"
                android:layout_height="wrap_content">
        </android.support.v7.widget.CardView>
</LinearLayout>

答案 3 :(得分:0)

要根据所需的列数动态设置,可以根据列数设置布局管理器。这非常灵活。具有相应布局的相同/相似代码可以在平板电脑或手机上运行。

    // Set the adapter
    if (view instanceof RecyclerView) {
       Context context = view.getContext();
       RecyclerView recyclerView = (RecyclerView) view;
       if (mColumnCount <= 1) {
          recyclerView.setLayoutManager(new LinearLayoutManager(context));
       } else {
          recyclerView.setLayoutManager(new GridLayoutManager(context, mColumnCount));
       }
       ....
    }