線形レイアウト内に相対レイアウトがあり、相対レイアウト内に画像ビューとその上に積まれた glsurface があります。glsurface を imageview と同じサイズにしたいのですが、このタスクを達成するにはどうすればよいですか??
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.zibi.ResizableImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1.0"
android:gravity="center_horizontal"
android:src="@drawable/notepad" />
<com.zibi.zGLSurfaceView android:id="@+id/surfaceviewclass"
android:layout_width="match_parent"
android:layout_height="match_parent">
</com.zibi.travelersnotepad.zGLSurfaceView>
</RelativeLayout>