使用GridLayout管理器的Android Recyclerview:水平和垂直居中

时间:2015-03-08 21:06:11

标签: android android-layout android-recyclerview

大家好,我花了一天的时间来试图找出这个。

问题 所以我实现了recyclerview(NOT GRIDVIEW)并且它当前显示3个图标,但它们位于所需视图的顶部。我需要的是3个图标居中,任何x个图标用于自动居中,水平垂直打磨。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".Xview" >

<com.exmaple.app.topBar
    custom:gameState="paused"
    android:id="@id/score_bar"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true" />

<com.exmaple.app.BottomBar
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:id="@+id/bottom_bar"
    />


<FrameLayout
   android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/score_bar"
android:layout_above="@+id/bottom_bar"
android:layout_centerInParent="true">


    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
android:background="#000000"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
    android:layout_gravity="top|center"
    android:scrollbars="none"


        />
</FrameLayout>

</RelativeLayout>

我尝试了什么: 我已经尝试将recyclerview设置为layout:gravity =&#34; center&#34;

0 个答案:

没有答案