그리드 뷰 자체는 잘 됩니다..
하지만.....
어뎁터를 이용해서 각 항목에 텍스트뷰 2개와  그냥view한개를 넣었는데요

 <LinearLayout
  android:layout_height = "wrap_content"
  android:layout_width = "0dip"
  android:layout_weight = "10"
  android:orientation = "vertical">
   <TextView
    android:id="@+id/toptext"
    android:layout_width="fill_parent"
    android:gravity="center_vertical"
    android:layout_height="wrap_content" 
    android:textSize="7pt"
    android:textColor = "#000000"/>
   <TextView
    android:layout_width="fill_parent"
    android:id="@+id/bottomtext"
    android:singleLine="true"
    android:textSize="5pt"
    android:layout_height="fill_parent"
    android:textColor = "#000000"/>
  </LinearLayout>
     <View android:id="@+id/v1" 
   android:layout_width="fill_parent"
   android:layout_height="1dip" 
   android:background="#c8c8c8" />
요렇게 말이죠...


사본 -device.png  
그런데 요것이 위에 그림처럼 높이가 지 맘대로 되버린다는 겁니다...

혹시 해결법 아시는 고수분은 해결 방법좀 알려 주셨으면 좋겠습니다....
요거 때문에 밤잠을 설칩니다...(위에서의 압박이..)