在片段中垂直居中RecyclerView

时间:2015-06-24 19:09:29

标签: android android-layout android-fragments

首先,我在Android中有点新手。 我目前有一个加载片段的活动,在这个片段中,我实例化了一个RecyclerView(水平方向)。

以下是我目前的布局:

我的主要人物:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/red"
    android:orientation="vertical">
        <FrameLayout
            android:id="@+id/container"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/green">
        </FrameLayout>
</LinearLayout>

我的片段:

<LinearLayout 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:gravity="center_vertical"
    android:orientation="vertical"
    android:background="@color/yellow">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/fragment_atelier_recycler_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_centerInParent="true"
        android:background="#FFE5E5E5"
        android:scrollbarStyle="insideOverlay"
        />

</LinearLayout>

我的RecyclerView适配器的项目布局:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content" android:layout_height="wrap_content"
    android:background="@color/gray">

    <ImageView
        android:id="@+id/item_icon"
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginTop="1dp"
        android:layout_marginBottom="1dp"
        android:layout_gravity="center"
        android:contentDescription="icon"/>
</LinearLayout>

我试着在几个小时内垂直居中我的RecyclerView而没有成功(通过使用gravity,layout_centerVertical等......)。 也许我错过了关于wrap_content / match_parent或线性/相对规格的内容。

提前致谢并度过美好的一天:)

1 个答案:

答案 0 :(得分:7)

这应该可以解决问题:

<RelativeLayout 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:background="@color/yellow">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/fragment_atelier_recycler_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:background="#FFE5E5E5"
        android:scrollbarStyle="insideOverlay"
        />

</RelativeLayout>