GridView 구현은 ListView구현과 별 다른게 없으나 GridView에서만 사용되는 속성이 몇가지 있어 그 내용을 정리해 보려고 합니다.
<?xml version=”1.0” encoding=”utf-8”?>
<linearlayout xmlns:android=”http://schemas.android.com/apk/res/android”
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:orientation=”vertical” >
<GridView
android:id=”@+id/gridView”
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:verticalSpacing=”10dip”
android:horizontalSpacing=”10dip”
android:numColumns=”auto_fit”
android:columnWidth=”60dip”
android:stretchMode=”columnWidth”
android:gravity=”center”/>
</LinearLayout>
- numColumns : GridView의 행에 나열할 컬럼의 개수(1~n개)를 지정한다. 'auto_fit'으로 설정하면 사용 가능한 공간에 따라 자동으로 컬럼의 개수가 정해진다.
- verticalSpacing과 horizontdalSpacing : GridView의 셀 간격을 설정한다.
- columnWidth : 컬럼의 너비를 설정한다.
- stretchMode : numColumns를 'auto-fit'로 설정했을 경우 남는 좌우 공간을 어떻게 분배할지 결정한다. 'columnWidth'는 남은 공간이 칼럼들에게 골고루 할당되며, 'spacingWidth'는 컬럼들에게 여백으로 남은 공간을 골고루 할당한다.
댓글 없음:
댓글 쓰기