我在线性布局中有一个相对布局,在相对布局中我有一个图像视图和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>