0

線形レイアウト内に相対レイアウトがあり、相対レイアウト内に画像ビューとその上に積まれた 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>
4

2 に答える 2

1

layout_align*属性を設定してみてください。TextViewはImageViewをカバーします。相対レイアウト属性の詳細

<RelativeLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <ImageView 
        android:id="@+id/img"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/image"
        android:scaleType="fitXY"/>
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#AFFF"
        android:layout_alignRight="@+id/img"
        android:layout_alignLeft="@+id/img"
        android:layout_alignTop="@+id/img"
        android:layout_alignBottom="@+id/img"
        android:text="sample text"/>
</RelativeLayout>
于 2013-03-03T10:50:51.083 に答える
0

RelativeLayoutを使用して、その中の子ビューのサイズプロパティを強制することはできません。特に必要がない場合は、代わりにLinearLayoutを使用して、両方のビューに同じ重みを付けることができます。

            <LinearLayout
                    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"
                    android:layout_weight="1.0">

            </com.zibi.travelersnotepad.zGLSurfaceView>
        </LinearLayout>
于 2013-03-03T10:42:00.597 に答える