gpt4 book ai didi

android - RecyclerView重力

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:33:08 25 4
gpt4 key购买 nike

我有一个 recylcler View ,但它似乎没有实现 setGravity 方法。

我的列表是水平对齐的,但我需要它居中。我该怎么做?

fragment_my_zone_item_controlled.xml

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

<FrameLayout
android:id="@+id/fragment_my_zone_item_controlled_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/fragment_my_zone_item_controlled_tabs"
android:layout_marginBottom="12dp"
android:layout_marginTop="12dp" />

<android.support.v7.widget.RecyclerView
android:id="@+id/fragment_my_zone_item_controlled_tabs"
android:layout_width="match_parent"
android:layout_height="44dp"
android:background="@color/action_bar_color"
android:scrollbars="none" />

</RelativeLayout>

This is how it looks

这是它的样子,我需要它居中

谢谢大家

最佳答案

我知道这是很晚的答案,可能有人从中得到了帮助所以请尝试这样添加

 <android.support.v7.widget.RecyclerView
android:id="@+id/fragment_my_zone_item_controlled_tabs"
android:layout_width="wrap_content"
android:layout_height="44dp"
android:layout_centerHorizontal="true"
android:background="#dddddd"
android:scrollbars="none" />

添加android:layout_centerHorizo​​ntal="true"方法

关于android - RecyclerView重力,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28450643/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com