Я использую StickyGridHeadersGridView для отображения слотов бронирования в приложении.Дело в том, что он работает нормально и все, но слоты размещены так, как будто они находятся в родительском слое.В большинстве случаев будет показано 3 или 4 слота.Так что, если он выровнен по центру, смотреть будет приятнее.Попытался сделать много настроек без посторонней помощи.Размещение кода XML ниже.
main.xml
<RelativeLayout
android:id="@+id/lin_slots_layout"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_marginTop="10dp"
android:gravity="center"
android:orientation="horizontal">
<include
android:id="@+id/layoutGrid"
layout="@layout/slot_grid_slide"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:layout_gravity="center"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:padding="10dp"
android:visibility="visible" />
</RelativeLayout>
layoutGrid
<?xml version="1.0" encoding="utf-8"?>
<layout
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:id="@+id/gridLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@color/lightgrey"
android:gravity="center"
android:orientation="vertical"
>
<com.bestdocapp.kiosk_opd.utils.stickygridheaders.StickyGridHeadersGridView
android:id="@+id/session"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:background="@color/bmh_home_background_color"
android:clipToPadding="false"
android:columnWidth="0dp"
android:gravity="center"
android:horizontalSpacing="0dp"
android:numColumns="5"
android:textAlignment="center"
android:verticalSpacing="2dp"
/>
</RelativeLayout>
Необходимо выровнять его по центру.