我正在使用 Absolute Layout 将屏幕划分为 4 个物种,中心为圆形,如下所示
它适用于小屏幕尺寸,但不适用于大屏幕。如何用不同的屏幕宽度做到这一点?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/linear"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<AbsoluteLayout
android:id="@+id/AbsoluteLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:l="true"
android:layout_centerInParent="true"
android:background="#fcf2cf"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.organizer2.MainActivity" >
<Button
android:id="@+id/Button1"
android:layout_width="148dp"
android:layout_height="180dp"
android:layout_weight="1"
android:layout_x="0dp"
android:layout_y="0dp"
android:background="#219baa"
android:text="Button" />
<Button
android:id="@+id/Button2"
android:layout_width="148dp"
android:layout_height="180dp"
android:layout_weight="1"
android:layout_x="148dp"
android:layout_y="0dp"
android:background="#ef820b"
android:text="Button" />
<Button
android:id="@+id/Button3"
android:layout_width="148dp"
android:layout_height="180dp"
android:layout_weight="1"
android:layout_x="0dp"
android:layout_y="180dp"
android:background="#e3c800"
android:text="Button" />
<Button
android:id="@+id/Button4"
android:layout_width="148dp"
android:layout_height="180dp"
android:layout_weight="1"
android:layout_x="148dp"
android:layout_y="180dp"
android:background="#36bc89"
android:text="Button" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_x="4dp"
android:layout_y="132dp"
android:src="@drawable/circle" />
</AbsoluteLayout>
</RelativeLayout>