21
GridLayout (GridView 아님) 모든 자식을 균등하게 늘리는 방법
안에 버튼이있는 2x2 그리드를 갖고 싶습니다. 이것은 ICS이므로 주어진 새로운 GridLayout을 사용하려고합니다. 내 레이아웃의 XML은 다음과 같습니다. <?xml version="1.0" encoding="utf-8"?> <GridLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/favorites_grid" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#00ff00" android:rowCount="2" android:columnCount="2"> <Button android:text="Cell 0" android:layout_row="0" android:layout_column="0" android:textSize="14dip" /> <Button android:text="Cell 1" android:layout_row="0" android:layout_column="1" android:textSize="14dip" /> <Button android:text="Cell 2" android:layout_row="1" android:layout_column="0" android:textSize="14dip" /> <Button …