5
Gridview 높이가 잘립니다.
gridview 안에 8 개의 항목을 표시하려고합니다. 슬프게도 gridview 높이는 항상 너무 작아서 첫 번째 행과 두 번째 행의 일부만 표시합니다. 설정 android:layout_height="300dp"이 작동합니다. wrap_ content및 fill_parent분명히 아닙니다. 내 그리드보기 : <GridView android:id="@+id/myId" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" android:horizontalSpacing="2dp" android:isScrollContainer="false" android:numColumns="4" android:stretchMode="columnWidth" android:verticalSpacing="20dp" /> 내 아이템 리소스 : <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" …