Inside a linearLayout I have put three RelativeLayouts with weight = 1. I want RelativeLayouts to be in the center of the screen. How can I manage their position?
below is my xml code:
<LinearLayout
            android:id="@+id/layout_circular_items"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/view_bg_profile_img"
            android:padding="16dp"
            android:layout_marginTop="8dp"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginStart="8dp"
            android:layout_marginLeft="8dp"
            android:background="@color/color_backgrounds_light">
            <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/circle_txt_view"
                android:layout_margin="8dp"
                android:gravity="center"
                android:layout_gravity="center">
                <TextView
                    android:id="@+id/txt_view_scores"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="2843"
                    android:textSize="@dimen/dim_txt_size_times"
                    android:gravity="center"
                    android:foregroundGravity="center"
                    android:layout_centerHorizontal="true"/>
                <TextView
                    android:id="@+id/txt_view_scores_title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="scores"
                    android:layout_below="@id/txt_view_scores"
                    android:textSize="@dimen/dim_txt_size_times_title"
                    android:gravity="center"
                    android:foregroundGravity="center"
                    android:layout_centerHorizontal="true"/>
            </RelativeLayout>
            <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/circle_txt_view"
                android:layout_margin="8dp"
                android:gravity="center"
                android:layout_gravity="center">
                <TextView
                    android:id="@+id/txt_view_purchase"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="12"
                    android:textSize="@dimen/dim_txt_size_times"
                    android:gravity="center"
                    android:foregroundGravity="center"
                    android:layout_centerHorizontal="true"/>
                <TextView
                    android:id="@+id/txt_view_purchase_title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="purchase"
                    android:layout_below="@id/txt_view_purchase"
                    android:textSize="@dimen/dim_txt_size_times_title"
                    android:gravity="center"
                    android:foregroundGravity="center"
                    android:layout_centerHorizontal="true"/>
            </RelativeLayout>
            <RelativeLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/circle_txt_view"
                android:layout_margin="8dp"
                android:gravity="center"
                android:layout_gravity="center">
                <TextView
                    android:id="@+id/txt_view_cash"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="21450"
                    android:textSize="@dimen/dim_txt_size_times"
                    android:gravity="center"
                    android:foregroundGravity="center"
                    android:layout_centerHorizontal="true"/>
                <TextView
                    android:id="@+id/txt_view_cash_title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="cash"
                    android:layout_below="@id/txt_view_cash"
                    android:textSize="@dimen/dim_txt_size_times_title"
                    android:gravity="center"
                    android:foregroundGravity="center"
                    android:layout_centerHorizontal="true"/>
            </RelativeLayout>
        </LinearLayout>
and this is the screen shot of output:
I want the red spaces be equal.

 
     
     
     
    