안녕하세요. 안드로이드 학습중인 사람인데요.


  <GridView
    android:id="@+id/grid"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding = "0dip"
    android:verticalSpacing ="2dip"
    android:horizontalSpacing ="4dip"
    android:numColumns = "7"
    android:columnWidth = "40dip"
    android:stretchMode = "columnWidth"
    android:gravity = "center"
    android:adjustViewBounds="true" 
    xmlns:android="http://schemas.android.com/apk/res/android">
  </GridView>

다음과 같이 GridView를 만들었는데요 폰에 직접 넣어보니
avd에서 잘 뜨던놈이 밀려서 기본틀은 유지되지만 제데로 맞춰서 ui 가 나오질 않습니다.
어떤 속성을 줘야지 해상도에 맞는 GridView 가 그려지나요?

아니면 맞게 그려지기 위한 방법이 따로 있는건가요?

해당 GridView 는 무조건 7개의 컬럼이 존재해야만 하는 상태입니다.