【发布时间】:2019-03-23 15:18:18
【问题描述】:
我有几个按钮,应该是正方形的。但我无法将高度设置为与宽度相同。我该怎么做?
我尝试用layout_constraintDimensionRatio解决这个问题,但是没用,高度只有0。
这是代码:
<Button
android:id="@+id/grid_11"
style="@style/Widget.AppCompat.Button.Small"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"></Button>
这是我尝试过的:
<Button
android:id="@+id/grid_11"
style="@style/Widget.AppCompat.Button.Small"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintDimensionRatio="1:1"
android:layout_weight="1"></Button>
【问题讨论】: