答案 0 :(得分:9)
我认为实现附图中描述的目标的正确方法是使用GridLayoutManager
而不是RecyclerView.LayoutManager
或LinearLayoutManager
。
我们在LayoutManager
上附加的RecyclerView
决定了列数。有3个子类。
LinearLayoutManager
GridLayoutmanger
StaggeredGridLayoutmanger
在初始化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));
}
....
}