Android: GridView width not wrapping to content?

前端 未结 4 1760
广开言路
广开言路 2021-01-13 15:15

I am trying to display a GridView in a Dialog. Despite all my efforts, the GridView width grows to the entire screen, instead of wrapping to the columns. The layout and an

4条回答
  •  借酒劲吻你
    2021-01-13 15:42

    I think you should use android:layout_width="fill_parent" instead of android:layout_width="wrap_content" because wrap content use the minimum place it needs. On the other hand, fill_parent use all space needed. More over you should get rid of "android:columnWidth="70dp".

提交回复
热议问题