私はこのグリッドビューを持っています,, LinearLayoutの中に
LinearLayout の高さは match_parent または fill_parent です GridView の高さは fill_parent または match_parent です
しかし、それはまだその空のスペースを残しています... Gridview Content を伸ばして LinearLayout を埋めたい
助けてください!
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<GridView
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="6dp"
android:gravity="center"
android:horizontalSpacing="2dp"
android:numColumns="3"
android:stretchMode="columnWidth"
android:verticalSpacing="2dp" />
</LinearLayout>