Устанавливая поля в GridLayout-Elements, элементы не помещаются в пространство, если для фрагмента используется соответствующий макет - PullRequest
0 голосов
/ 05 сентября 2018

Для добавления черного разделителя к моим элементам GridLayout я изменил цвет фона GridLayout на черный и установил поля для всех элементов. Это работает нормально, но если я использую этот макет для фрагмента, элементы взрываются вертикально. Кто-то знает причину или может дать мне другое решение, как я могу установить интервал, который работает в этом случае? Спасибо всем, кто пытается помочь мне заранее.

Вот мои коды

фрагмент макета, содержащий GridLayout:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <GridLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:columnCount="2"
        android:rowCount="2"
        android:id="@+id/grid_main_layout_menu"
        android:background="#000000">

        <TextView
            android:background="#ff0000"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_margin="0.5dp"
            />
        <TextView
            android:background="#00ff00"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_margin="0.5dp"
            />
        <TextView
            android:background="#0000ff"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_margin="0.5dp"
            />
        <TextView
            android:background="#FFFF00"
            android:layout_rowWeight="1"
            android:layout_columnWeight="1"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_margin="0.5dp"
            />
    </GridLayout>
</android.support.constraint.ConstraintLayout>

Main-Layout:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="app.path">

    <android.support.v7.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintVertical_weight="1"
        android:id="@+id/recyclerView1"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintBottom_toTopOf="@id/recyclerView2"
        app:layout_constraintLeft_toLeftOf="parent"
        />

    <android.support.v7.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintVertical_weight="1"
        android:id="@+id/recyclerView2"
        app:layout_constraintTop_toBottomOf="@id/recyclerView1"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintBottom_toTopOf="@id/base_fragment"
        app:layout_constraintLeft_toLeftOf="parent"
        android:visibility="visible"/>

    <!--fragments - changing content-->
    <FrameLayout
        android:id="@+id/base_fragment"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintVertical_weight="8"
        app:layout_constraintTop_toBottomOf="@id/recyclerView2"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        />
</android.support.constraint.ConstraintLayout>
...