我正在尝试创建一个由卡组成的水平RecyclerView
。我希望每张卡都显示在屏幕中央,然后我可以水平滚动。
我将LinearLayoutManager
设置为水平,如下所示:
linearLayoutManager = new LinearLayoutManager(getActivity(),
LinearLayoutManager.HORIZONTAL, false);
recyclerView.setLayoutManager(linearLayoutManager);
片段的xml如下:
<FrameLayout
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"
android:layout_gravity="center"
tools:context="com.rubberduck.pairup.fragments.FavoritesFragment">
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_favorites"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="1dp"
android:layout_gravity="center"
android:scrollbars="vertical" />
</FrameLayout>
我还将layout_gravity
设置为CardView
的中心,这是RecyclerView的子视图,但无济于事。卡片始终显示在左上角。
我该如何做到这一点?
修改
CardView:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/cv_pair"
cardUseCompatPadding="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
card_view:cardCornerRadius="4dp">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/iv_shirt"
android:layout_width="@dimen/image_width"
android:layout_height="@dimen/image_height"
android:scaleType="centerCrop"
android:src="@drawable/tshirt" />
<ImageView
android:id="@+id/iv_trouser"
android:layout_width="@dimen/image_width"
android:layout_height="@dimen/image_height"
android:layout_toRightOf="@id/iv_shirt"
android:scaleType="centerCrop"
android:src="@drawable/jeans" />
</RelativeLayout>
</android.support.v7.widget.CardView>