我在GridLayout
中有一组按钮,按钮的高度与它们的宽度成纵横比,按钮的宽度几乎是网格宽度的一半(0dp和权重)。
现在,我想将GridLayout
的高度设置为wrap_content,但是什么都不呈现,如果我将GridLayout's
的高度设置为match_parent
,那么它将显示出来。
我的代码:
<?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:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".Home"
tools:showIn="@layout/app_bar_home">
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
android:columnCount="2"
android:rowCount="3"
>
<ImageButton
android:layout_width="0dp"
android:layout_height="0dp"
android:src="@drawable/btn_home_selection"
style="@style/home_button_style"
/>
<ImageButton
android:layout_width="0dp"
android:layout_height="0dp"
android:src="@drawable/btn_home_selection"
style="@style/home_button_style"
/>
<ImageButton
android:layout_width="0dp"
android:layout_height="0dp"
android:src="@drawable/btn_home_selection"
style="@style/home_button_style"
/>
<ImageButton
android:layout_width="0dp"
android:layout_height="0dp"
android:src="@drawable/btn_home_selection"
style="@style/home_button_style"
/>
<ImageButton
android:layout_width="0dp"
android:layout_height="0dp"
android:src="@drawable/btn_home_selection"
style="@style/home_button_style"
/>
<ImageButton
android:layout_width="0dp"
android:layout_height="0dp"
android:src="@drawable/btn_home_selection"
style="@style/home_button_style"
/>
</GridLayout>
</androidx.constraintlayout.widget.ConstraintLayout>