I need the following code to have a layout and the textView to occupy all the width but without deforming the buttons below, which must belong to the second column intact.
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:useDefaultMargins="true">
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_margin="5dp"
android:layout_row="0"
android:background="@android:color/black"
android:text="TextView"
android:textColor="@android:color/holo_blue_dark"
android:textSize="30dp"
tools:layout_editor_absoluteX="62dp"
tools:layout_editor_absoluteY="25dp"
/>
<Button
android:id="@+id/button5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="0"
android:layout_row="1"
android:text="Button" />
<Button
android:id="@+id/button8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="1"
android:layout_row="1"
android:text="Button" />
<Button
android:id="@+id/button9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="2"
android:layout_row="1"
android:text="Button" />
<Button
android:id="@+id/button10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_column="3"
android:layout_row="1"
android:text="Button" />
</GridLayout>