Как правильно настроить GridView? - PullRequest
0 голосов
/ 20 апреля 2019

Как настроить GridView идеально под Панель инструментов . Я хочу, чтобы margin был "0dp" на всех устройствах. Как это сделать?

Я пытался установить marginTop, но на устройствах с большим экраном GridView закрывал панель инструментов . Это выглядит по-разному на отдельных устройствах.

<?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"
    android:background="@drawable/background"
    tools:context="MainActivity">

    <android.support.v7.widget.Toolbar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/toolbar"
        android:background="#000000"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:title="Application"/>


    <GridView
        android:id="@+id/gridview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/toolbar"
        android:layout_marginTop="56dp"
        android:horizontalSpacing="8dp"
        android:numColumns="2"
        android:verticalSpacing="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="1.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0"></GridView>

</android.support.constraint.ConstraintLayout>

1 Ответ

0 голосов
/ 20 апреля 2019

Вы можете использовать относительный макет. Внутри относительной компоновки вы размещаете панель инструментов и свой GridView.

Внутри GridView напишите эту строку:

android:layout_below="@id/toolbar"

это поместит GridView ниже панели инструментов.

Как это:

 <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

<android.support.v7.widget.Toolbar
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/toolbar"
    android:background="#000000"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:title="Application"/>


<GridView
    android:id="@+id/gridview"
    android:layout_width="match_parent"
    android:layout_below="@id/toolbar"
    android:layout_height="match_parent"
    android:layout_below="@id/toolbar"
    android:horizontalSpacing="8dp"
    android:numColumns="2"
    android:verticalSpacing="8dp"></GridView>

        </RelativeLayout>

У вас есть 2 варианта:

1) Вы можете просто опубликовать этот код в макете ограничения и ввести нужную команду (касающуюся ограничения ограничения) в RelativeLayout

2) Непосредственно замените ConstraintLayout на RelativeLayout (я рекомендую вам этот метод в этом случае, это намного проще для кода)

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...