26 lines
1.4 KiB
XML
26 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.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:id="@+id/constraintLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".activity.ui.main.PlaceholderFragment">
|
|
|
|
<GridView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:id="@+id/gridView"
|
|
android:numColumns="3"
|
|
android:horizontalSpacing="8dp"
|
|
android:verticalSpacing="8dp"
|
|
android:paddingStart="@dimen/dp_15"
|
|
android:paddingEnd="@dimen/dp_15"
|
|
android:paddingBottom="@dimen/dp_30"
|
|
android:clipToPadding="false"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"/>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |