我创建了一个 squareView,当放在布局上时,它会生成一个正方形视图,其长度与屏幕宽度相同
我有 3 个视图 squareView 和 2 个其他视图让我们称它们为 view1 和 view2
我希望 squareView 位于屏幕的中心,并且 view1 和 view2 适合 squareView 顶部和底部的剩余空白空间
到目前为止我尝试的都没有成功
我尝试的是:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/ice"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/box"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:background="@drawable/frame1"
android:gravity="center_horizontal"
android:orientation="horizontal"
android:paddingBottom="4dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="4dp" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/sky" >
<Button
android:id="@+id/undo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_margin="5dp"
android:background="@drawable/undobutton" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_toLeftOf="@id/undo"
android:layout_toRightOf="@+id/menu"
android:contentDescription="@string/app_name"
android:src="@drawable/lines" />
<Button
android:id="@+id/menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_margin="5dp"
android:background="@drawable/menubutton" />
</RelativeLayout>
</LinearLayout>
<com.google.ads.AdView
android:id="@+id/ad"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
ads:adSize="BANNER"
ads:adUnitId="a151e1f9140523a"
ads:loadAdCreate="true" >
</com.google.ads.AdView>
<layouts.Board
android:id="@+id/board1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true" >
</layouts.Board>
请任何帮助。