我正在使用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>
需要使其居中对齐。
答案 0 :(得分:0)
请尝试这个。我更改了它的某些属性。所以请检查这是您想要的吗?
<RelativeLayout
android:id="@+id/gridLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
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="wrap_content"
android:layout_centerInParent="true"
android:background="@color/bmh_home_background_color"
android:clipToPadding="false"
android:columnWidth="100dp"
android:gravity="center"
android:horizontalSpacing="5dp"
android:numColumns="5"
android:textAlignment="center"
android:verticalSpacing="2dp"
/>
</RelativeLayout>