Я пытаюсь добавить кнопки в GridLayout с 3 столбцами, но не делю поровну. GridLayout соответствует родительской ширине правильно. Я попытался установить гравитацию и layout_width, но безуспешно. Как это будет делиться поровну ![enter image description here](https://i.stack.imgur.com/DHNu4.png)
<GridLayout
android:minWidth="25px"
android:minHeight="25px"
android:columnCount="3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/gridLayout1">
<Button
android:text="0"
android:id="@+id/button1"
android:background="#ff8fc4f1"
android:textColor="#ff353535"
HorizontalOptions="FillAndExpand"
/>