我正在尝试在具有3列的GridLayout中添加按钮,但是不要平均分配。 GridLayout正确匹配父级宽度。我尝试设置重力和layout_width,但没有成功。它将如何平均划分
<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"
/>