그리드 뷰 안에 텍스트 뷰를 통하여 글자를 넣었는데요~
동그라미 이미지를 텍스트하고 겹치게 하고싶은데
어떻게 구현할 수 있을까요?

//  레이아웃
 <GridView xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/gridview" android:layout_width="fill_parent"
  android:layout_height="fill_parent" android:numColumns="7"
  android:verticalSpacing="5dp" android:horizontalSpacing="5dp"
  android:stretchMode="columnWidth"
  android:gravity="center">
 </GridView>

//  public class test extends BaseAdapter 중에서 
// public View getView(int position, View oldView, ViewGroup parent) 부분입니다
ImageView img = (ImageView)v.findViewById(R.drawable.check30);
img.setLayoutParams(new GridView.LayoutParams(50,50));//(여기에서 에러가 나네요~)
((TextView)v).setText("aaa");   // v는 View 입니다

위 부분 에러날때

08-13 23:35:28.005: ERROR/AndroidRuntime(1392): java.lang.NullPointerException
이게 발생하네요 ~ ㅠ